From 90cd5aa8c8950406b335dfb34c01b0fdae833da9 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 17 Jun 2014 23:05:50 +0200 Subject: vo: make draw_image and vo_queue_image transfer image ownership Basically a cosmetic change. This is probably more intuitive. --- video/out/vo_null.c | 1 + 1 file changed, 1 insertion(+) (limited to 'video/out/vo_null.c') diff --git a/video/out/vo_null.c b/video/out/vo_null.c index 8d8d95d065..2259e50c48 100644 --- a/video/out/vo_null.c +++ b/video/out/vo_null.c @@ -32,6 +32,7 @@ static void draw_image(struct vo *vo, mp_image_t *mpi) { + talloc_free(mpi); } static void flip_page(struct vo *vo) -- cgit v1.2.3