From 961e4a3389e348033312662c0581a0fb34eaa14b Mon Sep 17 00:00:00 2001 From: Jai Menon Date: Thu, 15 Jul 2010 11:53:34 +0000 Subject: FFmpeg : Close input file and free any related memory if av_find_stream_info fails. Originally committed as revision 24247 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 1 + 1 file changed, 1 insertion(+) (limited to 'ffmpeg.c') diff --git a/ffmpeg.c b/ffmpeg.c index d5fd6a04bb..de15898138 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -3203,6 +3203,7 @@ static void opt_input_file(const char *filename) ret = av_find_stream_info(ic); if (ret < 0 && verbose >= 0) { fprintf(stderr, "%s: could not find codec parameters\n", filename); + av_close_input_file(ic); av_exit(1); } -- cgit v1.2.3