From acc88f07d49fdc650eff880806a9f8387a9abbbf Mon Sep 17 00:00:00 2001 From: Jean First Date: Fri, 30 Dec 2011 21:08:03 +0100 Subject: [PATCH] id3v2: fix compiler warning for uninitialized variables Signed-off-by: Jean First Signed-off-by: Michael Niedermayer --- libavformat/id3v2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;