diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:07:39 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:07:39 +0000 |
commit | 8af6261c27198a2b5011a3dc16048bdd80372245 (patch) | |
tree | 05ed0217269c600d0c592355ed3954419f8b0162 /libavfilter/avfiltergraph.c | |
parent | 54d7fcc1207ed37356f06e3a31a4e6bdaa096958 (diff) | |
download | ffmpeg-8af6261c27198a2b5011a3dc16048bdd80372245.tar.gz |
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
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r-- | libavfilter/avfiltergraph.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 5ff4447428..fc79848312 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -455,7 +455,6 @@ static AVFilterContext *create_filter_with_args(const char *filt, void *opaque) av_log(NULL, AV_LOG_ERROR, "error creating filter \"%s\" with args \"%s\"\n", name, args ? args : "(none)"); - return NULL; } av_free(filter); |