From cf92cc8751bb27666a5b8c7c384a3c6b379823b3 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 16 Jul 2014 01:33:50 +0200 Subject: [PATCH] avcodec/hevc: clear HEVClcList[i] on allocation Fixes fate failure with --enable-memory-poisoning && make THREAD_TYPE=slice THREADS=7 fate-hevc-conformance-ENTP_C_Qualcomm_1 Signed-off-by: Michael Niedermayer --- libavcodec/hevc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c index cccd07ac83..afb2baaf65 100644 --- a/libavcodec/hevc.c +++ b/libavcodec/hevc.c @@ -2427,7 +2427,7 @@ static int hls_slice_data_wpp(HEVCContext *s, const uint8_t *nal, int length) for (i = 1; i < s->threads_number; i++) { s->sList[i] = av_malloc(sizeof(HEVCContext)); memcpy(s->sList[i], s, sizeof(HEVCContext)); - s->HEVClcList[i] = av_malloc(sizeof(HEVCLocalContext)); + s->HEVClcList[i] = av_mallocz(sizeof(HEVCLocalContext)); s->sList[i]->HEVClc = s->HEVClcList[i]; } }