Commit 56c6cf28 authored by Art Clarke's avatar Art Clarke Committed by Benoit Fouet

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
parent 5c56e746
...@@ -499,7 +499,7 @@ int av_open_input_file(AVFormatContext **ic_ptr, const char *filename, ...@@ -499,7 +499,7 @@ int av_open_input_file(AVFormatContext **ic_ptr, const char *filename,
av_freep(&pd->buf); av_freep(&pd->buf);
if (pb) if (pb)
url_fclose(pb); url_fclose(pb);
*ic_ptr = NULL; av_freep(ic_ptr);
return err; return err;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment