summaryrefslogtreecommitdiff
path: root/slstatus.c
diff options
context:
space:
mode:
authorAaron Marcher <info@nulltime.net>2017-04-20 22:20:19 +0200
committerAaron Marcher <info@nulltime.net>2017-04-20 22:20:19 +0200
commitc288663ebdeb78ef50a6378651bb14380ed4b20a (patch)
treed34bb69436c1048972e9effaf1896e365929a2b0 /slstatus.c
parentb2714032e5087e63b5744d3fb8a131e13e1d6f9a (diff)
fix overflow in run_command()
Diffstat (limited to 'slstatus.c')
-rw-r--r--slstatus.c2
1 files changed, 1 insertions, 1 deletions
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';
}