Remove useless init from aiff_read_header() found by CSA.

Originally committed as revision 18580 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2009-04-17 18:18:29 +00:00
parent feda8550a9
commit 551b41d4bf

View File

@ -313,7 +313,7 @@ static int aiff_read_header(AVFormatContext *s,
uint32_t tag;
unsigned version = AIFF_C_VERSION1;
ByteIOContext *pb = s->pb;
AVStream * st = s->streams[0];
AVStream * st;
/* check FORM header */
filesize = get_tag(pb, &tag);