Introduction
Introduction Statistics Contact Development Disclaimer Help
Fix memory leaks in drw - dmenu - my customized version of dmenu (hiltjo branch)
git clone git://git.codemadness.org/dmenu
Log
Files
Refs
README
LICENSE
---
commit 9b38fda6feda68f95754d5b8932b1a69471df960
parent db6093f6ec1bb884f7540f2512935b5254750b30
Author: Hiltjo Posthuma <[email protected]>
Date: Thu, 11 Jun 2020 18:45:33 +0200
Fix memory leaks in drw
Synced from dwm.
Patch by Alex Flierl <[email protected]>, thanks.
Diffstat:
M drw.c | 1 +
1 file changed, 1 insertion(+), 0 deletions(-)
---
diff --git a/drw.c b/drw.c
@@ -95,6 +95,7 @@ drw_free(Drw *drw)
{
XFreePixmap(drw->dpy, drw->drawable);
XFreeGC(drw->dpy, drw->gc);
+ drw_fontset_free(drw->fonts);
free(drw);
}
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.