all repos — slstatus @ 175844da0f561395d8429e9b8f8e9ad3d561fa50

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

Merge pull request #5 from Vlaix/master

Fixed small buffer in get_datetime()
Aaron Marcher info@nulltime.net
Thu, 10 Mar 2016 10:59:59 +0100
commit

175844da0f561395d8429e9b8f8e9ad3d561fa50

parent

f64bf0f072870e8d70be7b39a3d28c8cd649f368

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

jump to
M slstatus.cslstatus.c

@@ -168,13 +168,13 @@ char *

get_datetime() { time_t tm; - size_t bufsize = 19; + size_t bufsize = 64; char *buf = malloc(bufsize); /* get time in format */ time(&tm); if(!strftime(buf, bufsize, timeformat, localtime(&tm))) { - fprintf(stderr, "Strftime failed.\n"); + fprintf(stderr, "Strftime failed.\n"); exit(1); }