diff --git a/libavformat/oggdec.c b/libavformat/oggdec.c index d2725792e9ace3563e8133b666cad0e82f5ad53e..8d96320b3f4832ef64a78c6fd55ee1b26b2a6720 100644 --- a/libavformat/oggdec.c +++ b/libavformat/oggdec.c @@ -242,14 +242,14 @@ ogg_read_page (AVFormatContext * s, int *str) idx = ogg_find_stream (ogg, serial); if (idx < 0){ if (ogg->headers) { - int n; + int n; - for (n = 0; n < ogg->nstreams; n++) { - av_freep(&ogg->streams[n].buf); - av_freep(&ogg->streams[n].private); - } - ogg->curidx = -1; - ogg->nstreams = 0; + for (n = 0; n < ogg->nstreams; n++) { + av_freep(&ogg->streams[n].buf); + av_freep(&ogg->streams[n].private); + } + ogg->curidx = -1; + ogg->nstreams = 0; } idx = ogg_new_stream (s, serial); if (idx < 0)