diff options
author | Sertonix <sertonix@posteo.net> | 2024-08-02 15:37:14 +0200 |
---|---|---|
committer | Sertonix <sertonix@posteo.net> | 2024-08-02 15:56:58 +0200 |
commit | ffc6ef237e25c71a181f6ec2d4045f4f5100ab1b (patch) | |
tree | 08d3cc0f8e507ed07b73f11cd3fd3e3408d5bcb7 /main.c | |
parent | 65e94ffae271dc9ef75f5227d8ec647b1dd428bd (diff) | |
download | wbg-ffc6ef237e25c71a181f6ec2d4045f4f5100ab1b.tar.gz |
main: fix memory leak with svg graphics
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); } |