[FFmpeg-cvslog] avcodec/h264_slice: Clear ref_counts on redundant slices
Michael Niedermayer
git at videolan.org
Wed Feb 8 22:11:24 EET 2017
ffmpeg | branch: release/3.0 | Michael Niedermayer <michael at niedermayer.cc> | Wed Feb 8 17:55:41 2017 +0100| [3295d22f3ab197ac872603b38da535d33b971708] | committer: Michael Niedermayer
avcodec/h264_slice: Clear ref_counts on redundant slices
Fixes reading freed memory
Fixes: 568/clusterfuzz-testcase-6107186067406848
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit c03029a835949fc0e68b4c6558ebcdc3ae137087)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3295d22f3ab197ac872603b38da535d33b971708
---
libavcodec/h264.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index b979b15..550a7fc 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -1591,7 +1591,9 @@ again:
#endif
} else
context_count++;
- }
+ } else
+ sl->ref_count[0] = sl->ref_count[1] = 0;
+ break;
break;
case NAL_DPA:
case NAL_DPB:
More information about the ffmpeg-cvslog
mailing list