[FFmpeg-cvslog] avcodec/h264: make the first field of H264Context an AVClass

Michael Niedermayer git at videolan.org
Tue Jan 20 03:36:18 CET 2015


ffmpeg | branch: release/2.2 | Michael Niedermayer <michaelni at gmx.at> | Wed Dec 17 01:31:48 2014 +0100| [50e04b3f3ca961044d088b2c7a94fe94bc4ef9c5] | committer: Michael Niedermayer

avcodec/h264: make the first field of H264Context an AVClass

Fixes use of freed memory
Fixes: asan_heap-uaf_3660f67_757_cov_1257014655_Hi422FR1_SONY_A.jsv
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit f3b5b139ad853b6f69c6a0b036815a60e7b3f261)

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=50e04b3f3ca961044d088b2c7a94fe94bc4ef9c5
---

 libavcodec/h264.h |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index e30e228..66c1473 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -286,6 +286,7 @@ typedef struct MMCO {
  * H264Context
  */
 typedef struct H264Context {
+    AVClass *av_class;
     AVCodecContext *avctx;
     VideoDSPContext vdsp;
     H264DSPContext h264dsp;



More information about the ffmpeg-cvslog mailing list