From: Aaron Taylor Date: Sun, 11 Jul 2021 02:01:20 +0000 (-0700) Subject: Removing TODO related to freeing X-related allocations. The only things we aren't... X-Git-Url: http://git.subgeniuskitty.com/screensavers/.git/commitdiff_plain/7561e87defb07f5411623acb6ca55462ab66d423 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. --- 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);