git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fix memory leak.
[ffmpeg.git]
/
libavfilter
/
avfiltergraph.c
diff --git
a/libavfilter/avfiltergraph.c
b/libavfilter/avfiltergraph.c
index
83b3ed2
..
875ef0e
100644
(file)
--- a/
libavfilter/avfiltergraph.c
+++ b/
libavfilter/avfiltergraph.c
@@
-75,6
+75,8
@@
static AVFilterContext *create_filter_with_args(const char *filt, void *opaque)
}
} else av_log(NULL, AV_LOG_ERROR, "error creating filter!\n");
+ av_free(filter);
+
return ret;
fail: