summaryrefslogtreecommitdiffstats
path: root/video/out/vo_wayland.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo_wayland.c')
-rw-r--r--video/out/vo_wayland.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/video/out/vo_wayland.c b/video/out/vo_wayland.c
index 9871503b81..cd39158250 100644
--- a/video/out/vo_wayland.c
+++ b/video/out/vo_wayland.c
@@ -525,6 +525,7 @@ static int query_format(struct vo *vo, uint32_t format)
static int reconfig(struct vo *vo, struct mp_image_params *fmt, int flags)
{
struct priv *p = vo->priv;
+ mp_image_unrefp(&p->original_image);
p->width = vo->dwidth;
p->height = vo->dheight;
@@ -568,6 +569,8 @@ static void uninit(struct vo *vo)
for (int i = 0; i < MAX_BUFFERS; ++i)
destroy_shm_buffer(&p->buffers[i]);
+ talloc_free(p->original_image);
+
vo_wayland_uninit(vo);
}