aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-12-17 19:42:57 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-12-30 15:38:20 +0100
commit9dc6a7f13a23110c04568e890ef340f014c23303 (patch)
treeb1c5790b76a96e7f6992e01525d672d2f0517260
parent35819400e7821a8acbd11cb5c537cd84601e077b (diff)
downloadffmpeg-9dc6a7f13a23110c04568e890ef340f014c23303.tar.gz
avcodec/hevc: clear filter_slice_edges() on allocation
This avoids use of uninitialized memory Fixes: asan_static-oob_17aa046_582_cov_212287884_DBLK_G_VIXS_1.bit Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 8aa8d12554868c32436750f881954193087219c8) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/hevc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c
index 9633511f43..bdfc131de3 100644
--- a/libavcodec/hevc.c
+++ b/libavcodec/hevc.c
@@ -115,7 +115,7 @@ static int pic_arrays_init(HEVCContext *s)
if (!s->tab_ipm || !s->cbf_luma || !s->is_pcm)
goto fail;
- s->filter_slice_edges = av_malloc(ctb_count);
+ s->filter_slice_edges = av_mallocz(ctb_count);
s->tab_slice_address = av_malloc_array(pic_size_in_ctb,
sizeof(*s->tab_slice_address));
s->qp_y_tab = av_malloc_array(pic_size_in_ctb,