summaryrefslogtreecommitdiffstats
path: root/video/filter/vf_gradfun.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-05-18 12:23:02 +0200
committerwm4 <wm4@nowhere>2013-05-18 17:45:55 +0200
commitb0a60b7321c8878154f2488d99dd7b99cefca43b (patch)
tree8c2e881ab62d43b263fe58ca4dc0ef3cf42d3496 /video/filter/vf_gradfun.c
parentf569d245ba37898a79e853cb6fbd906dd992b531 (diff)
downloadmpv-b0a60b7321c8878154f2488d99dd7b99cefca43b.tar.bz2
mpv-b0a60b7321c8878154f2488d99dd7b99cefca43b.tar.xz
video/filter: fix option parser memory leak
This happens only if an option actually allocates memory (like strings). Change filter API such that vf->priv is free'd by vf.c instead by the filters. vf.c will free the option values as well.
Diffstat (limited to 'video/filter/vf_gradfun.c')
-rw-r--r--video/filter/vf_gradfun.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/video/filter/vf_gradfun.c b/video/filter/vf_gradfun.c
index ce4e5c9f56..227e16b028 100644
--- a/video/filter/vf_gradfun.c
+++ b/video/filter/vf_gradfun.c
@@ -352,8 +352,6 @@ static void uninit(struct vf_instance *vf)
{
if (!vf->priv) return;
av_free(vf->priv->buf);
- free(vf->priv);
- vf->priv = NULL;
}
static int vf_open(vf_instance_t *vf, char *args)