diff options
author | Alex Converse <alex.converse@gmail.com> | 2011-05-25 17:03:12 -0700 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2011-05-26 13:16:03 -0700 |
commit | 40a5dd2f35e0cfcfb92475a8f305fb6f78038507 (patch) | |
tree | 90171898e489e7ea79d5a797204455c6c8e3a9b1 /libavformat/id3v2.c | |
parent | ca7d8256e32e4dbafadc54a65b441945ac759ca9 (diff) | |
download | ffmpeg-40a5dd2f35e0cfcfb92475a8f305fb6f78038507.tar.gz |
id3v2: Initialize tflags for version 2.2.
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 4fecffe6ba..948261ad97 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -220,7 +220,7 @@ static void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t avio_skip(s->pb, get_size(s->pb, 4)); while (len >= taghdrlen) { - unsigned int tflags; + unsigned int tflags = 0; int tunsync = 0; if (isv34) { |