Skip to content
Snippets Groups Projects
Commit ff19d438 authored by Martin Storsjö's avatar Martin Storsjö Committed by Michael Niedermayer
Browse files

Init i to 0 (10l fix).

Patch by Martin Storsjö / martin von martin aus st

Originally committed as revision 19855 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c4674a47
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ static int failures=0; ...@@ -29,7 +29,7 @@ static int failures=0;
static void probe(AVProbeData *pd, int type, int p, int size) static void probe(AVProbeData *pd, int type, int p, int size)
{ {
int i; int i = 0;
AVInputFormat *fmt; AVInputFormat *fmt;
for(fmt = first_iformat; fmt != NULL; fmt = fmt->next) { for(fmt = first_iformat; fmt != NULL; fmt = fmt->next) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment