mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-11 17:30:00 +01:00
avcodec/vp8: Check cond init
Fixes: CID1598563 Unchecked return value
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 9b76e49061)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -265,7 +265,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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user