all repos — slstatus @ c288663ebdeb78ef50a6378651bb14380ed4b20a

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

fix overflow in run_command()
Aaron Marcher info@nulltime.net
Thu, 20 Apr 2017 22:20:19 +0200
commit

c288663ebdeb78ef50a6378651bb14380ed4b20a

parent

b2714032e5087e63b5744d3fb8a131e13e1d6f9a

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

jump to
M slstatus.cslstatus.c

@@ -451,7 +451,7 @@ fgets(buf, sizeof(buf), fp);

pclose(fp); buf[sizeof(buf) - 1] = '\0'; - if ((nlptr = strstr(buf, "\n")) != NULL) { + if ((nlptr = strrchr(buf, '\n')) != NULL) { nlptr[0] = '\0'; }