Commit 8af6261c authored by Vitor Sessak's avatar Vitor Sessak

Fix a small memory leak

Commited in SoC by Bobby Bingham on 2007-12-20 19:30:34

Originally committed as revision 12710 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 54d7fcc1
...@@ -455,7 +455,6 @@ static AVFilterContext *create_filter_with_args(const char *filt, void *opaque) ...@@ -455,7 +455,6 @@ static AVFilterContext *create_filter_with_args(const char *filt, void *opaque)
av_log(NULL, AV_LOG_ERROR, av_log(NULL, AV_LOG_ERROR,
"error creating filter \"%s\" with args \"%s\"\n", "error creating filter \"%s\" with args \"%s\"\n",
name, args ? args : "(none)"); name, args ? args : "(none)");
return NULL;
} }
av_free(filter); av_free(filter);
......
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