[FFmpeg-devel] [PATCH] avcodec/tests/rangecoder: initialize array to avoid valgrind warning

Michael Niedermayer michael at niedermayer.cc
Fri Jan 4 03:46:29 EET 2019


Found-by: jamrial
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
 libavcodec/tests/rangecoder.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/tests/rangecoder.c b/libavcodec/tests/rangecoder.c
index b6edc1493f..d6cf9ec380 100644
--- a/libavcodec/tests/rangecoder.c
+++ b/libavcodec/tests/rangecoder.c
@@ -29,7 +29,7 @@
 int main(void)
 {
     RangeCoder c;
-    uint8_t b[9 * SIZE];
+    uint8_t b[9 * SIZE] = {0};
     uint8_t r[9 * SIZE];
     int i, p, actual_length, version;
     uint8_t state[10];
-- 
2.20.1



More information about the ffmpeg-devel mailing list