Introduction
Introduction Statistics Contact Development Disclaimer Help
Fix memory leaks in drw - dwm - dynamic window manager
git clone git://git.suckless.org/dwm
Log
Files
Refs
README
LICENSE
---
commit f04cac6d6e39cd9e3fc4fae526e3d1e8df5e34b2
parent f09418bbb6651ab4c299cfefbe1d18de401f630e
Author: Alex Flierl <[email protected]>
Date: Thu, 11 Jun 2020 15:28:32 +0200
Fix memory leaks in drw
The function drw_fontset_free in drw.c was never called.
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 suckless.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.