fix memory leak

This commit is contained in:
JuliusHerrmann 2022-02-16 00:03:00 +01:00
parent ac89982df6
commit 5b9f99d846

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