From 1d2b014da73b5d18fee052edf472ee73a6a4e688 Mon Sep 17 00:00:00 2001 From: Jarcode Date: Fri, 2 Nov 2018 13:09:48 -0700 Subject: [PATCH] Fix leak with 'xroot' transparency --- xwin.c | 1 + 1 file changed, 1 insertion(+) diff --git a/xwin.c b/xwin.c index 8e7661d..8058476 100644 --- a/xwin.c +++ b/xwin.c @@ -389,6 +389,7 @@ unsigned int xwin_copyglbg(struct renderer* rd, unsigned int tex) { } if (image) XDestroyImage(image); + XFree(info); return texture; }