all repos — slstatus @ 086a70cde0a887a55d5554109e483c19bc6ad8c2

my build of slstatus (tools.suckless.org/slstatus/)

fixed memleak in datetime()
Aaron Marcher info@nulltime.net
Mon, 15 Aug 2016 12:43:43 +0200
commit

086a70cde0a887a55d5554109e483c19bc6ad8c2

parent

a8d5bde6a52ed5828ff217c8276673720f897c31

1 files changed, 1 insertions(+), 0 deletions(-)

jump to
M slstatus.cslstatus.c

@@ -160,6 +160,7 @@ time(&tm);

setlocale(LC_TIME, ""); if(!strftime(buf, bufsize, timeformat, localtime(&tm))) { setlocale(LC_TIME, "C"); + free(buf); fprintf(stderr, "Strftime failed.\n"); return smprintf("n/a"); }