diff options
author | Jean First <jeanfirst@gmail.com> | 2011-12-30 21:08:03 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-31 17:15:31 +0100 |
commit | acc88f07d49fdc650eff880806a9f8387a9abbbf (patch) | |
tree | 4478dd854700ac2a3770ddd51b743ee4b87a72b3 /libavformat/id3v2.c | |
parent | 810a14dbcc655c26abe49b690aabfe6c311bc769 (diff) | |
download | ffmpeg-acc88f07d49fdc650eff880806a9f8387a9abbbf.tar.gz |
id3v2: fix compiler warning for uninitialized variables
Signed-off-by: Jean First <jeanfirst@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/id3v2.c')
-rw-r--r-- | libavformat/id3v2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 9ee327169a..250281c357 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -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; |