From c288663ebdeb78ef50a6378651bb14380ed4b20a Mon Sep 17 00:00:00 2001 From: Aaron Marcher Date: Thu, 20 Apr 2017 22:20:19 +0200 Subject: [PATCH] fix overflow in run_command() --- slstatus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slstatus.c b/slstatus.c index 5500a62..f06c373 100644 --- a/slstatus.c +++ b/slstatus.c @@ -451,7 +451,7 @@ run_command(const char *cmd) pclose(fp); buf[sizeof(buf) - 1] = '\0'; - if ((nlptr = strstr(buf, "\n")) != NULL) { + if ((nlptr = strrchr(buf, '\n')) != NULL) { nlptr[0] = '\0'; }