Fix mem leak when user preallocates an AVFormatContext, passes it to

av_open_input_file(), but the file does not exist.
Patch by Art Clarke a$(surname) xuggle com

Originally committed as revision 19370 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Art Clarke 2009-07-08 08:26:57 +00:00 committed by Benoit Fouet
parent 5c56e74697
commit 56c6cf287b

View File

@ -499,7 +499,7 @@ int av_open_input_file(AVFormatContext **ic_ptr, const char *filename,
av_freep(&pd->buf);
if (pb)
url_fclose(pb);
*ic_ptr = NULL;
av_freep(ic_ptr);
return err;
}