[FFmpeg-cvslog] avcodec/vp8: Check cond init
Michael Niedermayer
git at videolan.org
Thu Jun 13 23:42:04 EEST 2024
ffmpeg | branch: release/5.1 | Michael Niedermayer <michael at niedermayer.cc> | Sun May 26 23:50:40 2024 +0200| [188fe46e92ccb4c90d91987c85a251e77efebcfb] | committer: Michael Niedermayer
avcodec/vp8: Check cond init
Fixes: CID1598563 Unchecked return value
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 9b76e49061a321467df23f7b1c8e8e715c8dec71)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=188fe46e92ccb4c90d91987c85a251e77efebcfb
---
libavcodec/vp8.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c
index 3083378151..4dba264076 100644
--- a/libavcodec/vp8.c
+++ b/libavcodec/vp8.c
@@ -248,7 +248,11 @@ int update_dimensions(VP8Context *s, int width, int height, int is_vp7)
free_buffers(s);
return AVERROR(ret);
}
- pthread_cond_init(&s->thread_data[i].cond, NULL);
+ ret = pthread_cond_init(&s->thread_data[i].cond, NULL);
+ if (ret) {
+ free_buffers(s);
+ return AVERROR(ret);
+ }
#endif
}
More information about the ffmpeg-cvslog
mailing list