avformat/usmdec: Initialize value
Fixes: CID1551685 Uninitialized scalar variable Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 06191386396344ee1906c6016b7d94ee8754fd61) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
a88516b6f7
commit
6b76648dc0
@ -119,7 +119,7 @@ static int parse_utf(AVFormatContext *s, AVIOContext *pb,
|
||||
for (int i = 0; i < nb_items; i++) {
|
||||
GetByteContext *xgb;
|
||||
uint8_t key[256];
|
||||
int64_t value;
|
||||
int64_t value = -1;
|
||||
int n = 0;
|
||||
|
||||
type = bytestream2_get_byte(&gb);
|
||||
|
Loading…
x
Reference in New Issue
Block a user