Xinqi Bao's Git
projects
/
slstatus.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
| inline |
side by side
(parent:
b271403
)
fix overflow in run_command()
author
Aaron Marcher <
[email protected]
>
Thu, 20 Apr 2017 20:20:19 +0000
(22:20 +0200)
committer
Aaron Marcher <
[email protected]
>
Thu, 20 Apr 2017 20:20:19 +0000
(22:20 +0200)
slstatus.c
diff
|
blob
|
history
diff --git
a/slstatus.c
b/slstatus.c
index
5500a62
..
f06c373
100644
(file)
--- a/
slstatus.c
+++ b/
slstatus.c
@@
-451,7
+451,7
@@
run_command(const char *cmd)
pclose(fp);
buf[sizeof(buf) - 1] = '\0';
- if ((nlptr = str
str(buf, "\n"
)) != NULL) {
+ if ((nlptr = str
rchr(buf, '\n'
)) != NULL) {
nlptr[0] = '\0';
}