[FFmpeg-cvslog] avcodec/svq1: zero initialize entries array

James Almer git at videolan.org
Sun Apr 9 19:39:18 EEST 2017


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sun Apr  9 13:38:41 2017 -0300| [aed84ee4d1b0c9e315a84b1ee0918fa49ee9cc09] | committer: James Almer

avcodec/svq1: zero initialize entries array

Fixes valgrind warnings about "Use of uninitialised value of size 8"

Reviewed-by: Kieran Kunhya <kierank at obe.tv>
Signed-off-by: James Almer <jamrial at gmail.com>

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

 libavcodec/svq1dec.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/svq1dec.c b/libavcodec/svq1dec.c
index d3e60c3a4a..e5e43fc8e2 100644
--- a/libavcodec/svq1dec.c
+++ b/libavcodec/svq1dec.c
@@ -160,7 +160,7 @@ static int svq1_decode_block_intra(GetBitContext *bitbuf, uint8_t *pixels,
     uint8_t *list[63];
     uint32_t *dst;
     const uint32_t *codebook;
-    int entries[6];
+    int entries[6] = { 0 };
     int i, j, m, n;
     int stages;
     unsigned mean;
@@ -227,7 +227,7 @@ static int svq1_decode_block_non_intra(GetBitContext *bitbuf, uint8_t *pixels,
     uint8_t *list[63];
     uint32_t *dst;
     const uint32_t *codebook;
-    int entries[6];
+    int entries[6] = { 0 };
     int i, j, m, n;
     int stages;
     unsigned mean;



More information about the ffmpeg-cvslog mailing list