aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSertonix <sertonix@posteo.net>2024-08-02 15:37:14 +0200
committerSertonix <sertonix@posteo.net>2024-08-02 15:56:58 +0200
commitffc6ef237e25c71a181f6ec2d4045f4f5100ab1b (patch)
tree08d3cc0f8e507ed07b73f11cd3fd3e3408d5bcb7
parent65e94ffae271dc9ef75f5227d8ec647b1dd428bd (diff)
downloadwbg-ffc6ef237e25c71a181f6ec2d4045f4f5100ab1b.tar.gz
main: fix memory leak with svg graphics
-rw-r--r--main.c1
1 files changed, 1 insertions, 0 deletions
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);
}