diff options
author | wm4 <nfxjfg@googlemail.com> | 2017-03-27 13:06:56 +0200 |
---|---|---|
committer | wm4 <nfxjfg@googlemail.com> | 2017-03-27 13:21:20 +0200 |
commit | d7896e9b4228e5b7ffc7ef0d0f1cf145f518c819 (patch) | |
tree | 110cc653c5154f5f550cb0cd5207d87c6c123d13 | |
parent | 9e703ae30f911d4df3f80647266e65d3b2dcf30d (diff) | |
download | ffmpeg-d7896e9b4228e5b7ffc7ef0d0f1cf145f518c819.tar.gz |
pthread_frame: fix uninitialized variable read
Could lead to random behavior. This possibly happened due to commit
32a5b631267. This should/could probably be simplified, but for no apply
a minimal fix to quell the errors.
Tested-by: Michael Niedermayer <michael@niedermayer.cc>
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/pthread_frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pthread_frame.c b/libavcodec/pthread_frame.c index 6620a8d324..b618be0bf5 100644 --- a/libavcodec/pthread_frame.c +++ b/libavcodec/pthread_frame.c @@ -468,7 +468,7 @@ int ff_thread_decode_frame(AVCodecContext *avctx, FrameThreadContext *fctx = avctx->internal->thread_ctx; int finished = fctx->next_finished; PerThreadContext *p; - int err, ret; + int err, ret = 0; /* release the async lock, permitting blocked hwaccel threads to * go forward while we are in this function */ |