mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-13 18:40:03 +01:00
avcodec/tests/rangecoder: initialize array to avoid valgrind warning
Found-by: jamrial
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit c15972f0af)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -29,7 +29,7 @@
|
|||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
RangeCoder c;
|
RangeCoder c;
|
||||||
uint8_t b[9 * SIZE];
|
uint8_t b[9 * SIZE] = {0};
|
||||||
uint8_t r[9 * SIZE];
|
uint8_t r[9 * SIZE];
|
||||||
int i;
|
int i;
|
||||||
uint8_t state[10];
|
uint8_t state[10];
|
||||||
|
|||||||
Reference in New Issue
Block a user