[FFmpeg-cvslog] avcodec/pngdec: Clean up on av_frame_ref() failure
Michael Niedermayer
git at videolan.org
Thu Oct 26 23:27:25 EEST 2017
ffmpeg | branch: release/3.2 | Michael Niedermayer <michael at niedermayer.cc> | Sun Sep 17 02:42:11 2017 +0200| [ab2d991382c2cb8c7e319f804eb6b83ad863c1a0] | committer: Michael Niedermayer
avcodec/pngdec: Clean up on av_frame_ref() failure
Fixes: memleak
Fixes: 3203/clusterfuzz-testcase-minimized-4514553595428864
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by: James Almer <jamrial at gmail.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 5480e82d77770e81e897a8c217f3c7f0c13a6de1)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ab2d991382c2cb8c7e319f804eb6b83ad863c1a0
---
libavcodec/pngdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index 52b872a06a..7f0d416683 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -1358,7 +1358,7 @@ static int decode_frame_png(AVCodecContext *avctx,
}
if ((ret = av_frame_ref(data, s->picture.f)) < 0)
- return ret;
+ goto the_end;
*got_frame = 1;
More information about the ffmpeg-cvslog
mailing list