Xinqi Bao's Git
projects
/
slstatus.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
| inline |
side by side
On success, fgets always terminates the result.
[slstatus.git]
/
slstatus.c
diff --git
a/slstatus.c
b/slstatus.c
index
6deb68c
..
ada6441
100644
(file)
--- a/
slstatus.c
+++ b/
slstatus.c
@@
-447,7
+447,7
@@
run_command(const char *cmd)
warn("Failed to get command output for %s", cmd);
return smprintf("%s", UNKNOWN_STR);
}
- fgets(buf, sizeof(buf)
- 1
, fp);
+ fgets(buf, sizeof(buf), fp);
pclose(fp);
buf[sizeof(buf) - 1] = '\0';