[FFmpeg-cvslog] avcodec/4xm: Fix vlc memleak
Michael Niedermayer
git at videolan.org
Wed Jun 26 23:16:00 EEST 2019
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Thu Jun 20 23:58:47 2019 +0200| [55557c6124573eb715d6c6eeb1a472b99e91f9d5] | committer: Michael Niedermayer
avcodec/4xm: Fix vlc memleak
Fixes: memleak
Fixes: 15297/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FOURXM_fuzzer-5746203548975104
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=55557c6124573eb715d6c6eeb1a472b99e91f9d5
---
libavcodec/4xm.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c
index 2b88c899d0..89120aa8fb 100644
--- a/libavcodec/4xm.c
+++ b/libavcodec/4xm.c
@@ -697,6 +697,7 @@ static const uint8_t *read_huffman_tables(FourXContext *f,
len_tab[j] = len;
}
+ ff_free_vlc(&f->pre_vlc);
if (init_vlc(&f->pre_vlc, ACDC_VLC_BITS, 257, len_tab, 1, 1,
bits_tab, 4, 4, 0))
return NULL;
More information about the ffmpeg-cvslog
mailing list