Fix memory leaks in drw

Synced from dwm.
Patch by Alex Flierl <shad0w73@freenet.de>, thanks.
master
Hiltjo Posthuma 2020-06-11 18:45:33 +02:00
parent db6093f6ec
commit 9b38fda6fe
1 changed files with 1 additions and 0 deletions

1
drw.c
View File

@ -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);
}