[hackers] Unsubscribe

2020-01-26 Thread Jason Eastman
Unsubscribe

Re: [hackers] Unsubscribe

2020-01-26 Thread Mattias Andrée
:'( To unsubscribe, send an e-mail to hackers+unsubscr...@suckless.org. Almost all mailing-lists have a List-Unsubscribe header in the e-mails, which you can look at if you are not sure how to unsubscribe. On Sun, 26 Jan 2020 09:42:05 -0700 Jason Eastman wrote: > Unsubscribe > >

[hackers] [dwm][PATCH] remove NULL guards for XFree

2020-01-26 Thread Devin J. Pohly
XFree has always been an alias for free(), which does nothing when passed NULL. (This behavior is now officially documented in the xorg man page for XFree.) --- dwm.c | 9 +++-- 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/dwm.c b/dwm.c index 4465af1..dc77311 100644 --- a/dwm

[hackers] [dwm][PATCH] remember to free everything we create

2020-01-26 Thread Devin J. Pohly
Leaks found with Valgrind. Alternatively, drw_fontset_free could be called from drw_free if drw->fonts != NULL. --- dwm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dwm.c b/dwm.c index 4465af1..03f9546 100644 --- a/dwm.c +++ b/dwm.c @@ -486,7 +486,9 @@ cleanup(void) drw