From ffc6ef237e25c71a181f6ec2d4045f4f5100ab1b Mon Sep 17 00:00:00 2001 From: Sertonix Date: Fri, 2 Aug 2024 15:37:14 +0200 Subject: main: fix memory leak with svg graphics --- main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/main.c b/main.c index f2d341b..f8ba7ac 100644 --- a/main.c +++ b/main.c @@ -118,6 +118,7 @@ render(struct output *output) 0, 0, 0, 0, 0, 0, width * scale, height * scale); if (is_svg) { + free(pixman_image_get_data(src)); pixman_image_unref(src); } -- cgit v1.2.3