Fix memory leaks in drw

Synced from dwm.
Patch by Alex Flierl <shad0w73@freenet.de>, thanks.
This commit is contained in:
Hiltjo Posthuma 2020-06-11 18:45:33 +02:00 committed by Justin Ludwig
parent b23431233d
commit 360e74f0a0

1
drw.c
View File

@ -98,6 +98,7 @@ drw_free(Drw *drw)
{
XFreePixmap(drw->dpy, drw->drawable);
XFreeGC(drw->dpy, drw->gc);
drw_fontset_free(drw->fonts);
free(drw);
}