mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-02-04 14:30:55 +08:00
id3v2: fix compiler warning for uninitialized variables
Signed-off-by: Jean First <jeanfirst@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
810a14dbcc
commit
acc88f07d4
@@ -437,7 +437,7 @@ static void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t
|
||||
AVIOContext *pbx;
|
||||
unsigned char *buffer = NULL;
|
||||
int buffer_size = 0;
|
||||
const ID3v2EMFunc *extra_func;
|
||||
const ID3v2EMFunc *extra_func = NULL;
|
||||
unsigned char *compressed_buffer = NULL;
|
||||
int compressed_buffer_size = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user