From 7561e87defb07f5411623acb6ca55462ab66d423 Mon Sep 17 00:00:00 2001 From: Aaron Taylor Date: Sat, 10 Jul 2021 19:01:20 -0700 Subject: [PATCH] Removing TODO related to freeing X-related allocations. The only things we aren't freeing are color allocations and I'm not worried about running out of color slots before the program terminates. --- hacks/NEDsim/NEDsim.c | 1 - 1 file changed, 1 deletion(-) diff --git a/hacks/NEDsim/NEDsim.c b/hacks/NEDsim/NEDsim.c index 67fcb32..15a25a8 100644 --- a/hacks/NEDsim/NEDsim.c +++ b/hacks/NEDsim/NEDsim.c @@ -745,7 +745,6 @@ NEDsim_free(Display * dpy, Window win, void * closure) free(nedsim->nedstate); } - // TODO: Replace all this with proper code to free everything related to the screensaver itself. XFreeGC(nedsim->dpy, nedsim->gc); XFreePixmap(nedsim->dpy, nedsim->panel); free(nedsim); -- 2.20.1