Fix mem leak when trying to open a non-existing image file (issue 2126).

Patch by Przemysław Sobala, psobala wp-sa pl

Originally committed as revision 24757 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Przemysław Sobala 2010-08-10 17:27:22 +00:00 committed by Carl Eugen Hoyos
parent 21afed5e1b
commit ec973f45a3

View File

@ -474,6 +474,7 @@ int av_open_input_stream(AVFormatContext **ic_ptr,
if (st) {
av_free(st->priv_data);
av_free(st->codec->extradata);
av_free(st->codec);
}
av_free(st);
}