summaryrefslogtreecommitdiffstats
path: root/video/filter/vf_scale.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_scale.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_scale.c')
-rw-r--r--video/filter/vf_scale.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/video/filter/vf_scale.c b/video/filter/vf_scale.c
index 92b9e71d08..f357581bb3 100644
--- a/video/filter/vf_scale.c
+++ b/video/filter/vf_scale.c
@@ -506,7 +506,6 @@ static int query_format(struct vf_instance *vf, unsigned int fmt){
static void uninit(struct vf_instance *vf){
if(vf->priv->ctx) sws_freeContext(vf->priv->ctx);
- free(vf->priv);
}
static int vf_open(vf_instance_t *vf, char *args){