summaryrefslogtreecommitdiffstats
path: root/video/filter/vf_eq.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/filter/vf_eq.c')
-rw-r--r--video/filter/vf_eq.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/video/filter/vf_eq.c b/video/filter/vf_eq.c
index 80eefab9b9..3381f248f7 100644
--- a/video/filter/vf_eq.c
+++ b/video/filter/vf_eq.c
@@ -216,8 +216,10 @@ static struct mp_image *filter(struct vf_instance *vf, struct mp_image *src)
}
struct mp_image *new = vf_alloc_out_image(vf);
- mp_image_copy(new, &dst);
- mp_image_copy_attributes(new, &dst);
+ if (new) {
+ mp_image_copy(new, &dst);
+ mp_image_copy_attributes(new, &dst);
+ }
talloc_free(src);
return new;