diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-27 03:12:23 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-27 03:34:27 +0100 |
commit | 0b0a8cd133c711e6d74a57a3fa1d8eaa28b74ce8 (patch) | |
tree | c9bc1cfbad531c6db327cc761204c499768497f2 /libswscale/utils.c | |
parent | dfc3cd73ff5554045b8035221c8f24d8a708717b (diff) | |
download | ffmpeg-0b0a8cd133c711e6d74a57a3fa1d8eaa28b74ce8.tar.gz |
swscale/utils: clear formatConvBuffer on allocation
Fixes use of uninitialized memory
Fixes: asan_heap-oob_35ca682_1474_cov_3230122439_aletrek_tga_16bit.mov
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 007498fc1a639ecee2cda1892cbcff66c7c8c951)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 7e74fe85de..2da0756485 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -1314,7 +1314,7 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter, c->chrDstW = FF_CEIL_RSHIFT(dstW, c->chrDstHSubSample); c->chrDstH = FF_CEIL_RSHIFT(dstH, c->chrDstVSubSample); - FF_ALLOC_OR_GOTO(c, c->formatConvBuffer, FFALIGN(srcW*2+78, 16) * 2, fail); + FF_ALLOCZ_OR_GOTO(c, c->formatConvBuffer, FFALIGN(srcW*2+78, 16) * 2, fail); /* unscaled special cases */ if (unscaled && !usesHFilter && !usesVFilter && |