Xinqi Bao's Git
projects
/
slstatus.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
| inline |
side by side
(parent:
f62d626
)
strtok() has no effect on buf && fgets() should have the full buffer length
author
raiz <
[email protected]
>
Tue, 27 Dec 2016 15:54:16 +0000
(18:54 +0300)
committer
raiz <
[email protected]
>
Tue, 27 Dec 2016 15:54:16 +0000
(18:54 +0300)
slstatus.c
diff
|
blob
|
history
diff --git
a/slstatus.c
b/slstatus.c
index
21cda51
..
73e0f2c
100644
(file)
--- a/
slstatus.c
+++ b/
slstatus.c
@@
-413,11
+413,10
@@
run_command(const char *cmd)
warn("Failed to get command output for %s", cmd);
return smprintf(UNKNOWN_STR);
}
- fgets(buf, sizeof(buf)
-1
, fp);
+ fgets(buf, sizeof(buf), fp);
pclose(fp);
buf[strlen(buf)] = '\0';
- strtok(buf, "\n");
return smprintf("%s", buf);
}