pinosaur
/
dwmblocks.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b685f28
)
fixed issue causing segfault on ARM systems
author
Aidan
<torrinfail@gmail.com>
Sat, 30 Nov 2019 09:05:10 +0000
(
02:05
-0700)
committer
Aidan
<torrinfail@gmail.com>
Sat, 30 Nov 2019 09:05:10 +0000
(
02:05
-0700)
dwmblocks.c
patch
|
blob
|
history
diff --git
a/dwmblocks.c
b/dwmblocks.c
index
395b565
..
f7f23cc
100644
(file)
--- a/
dwmblocks.c
+++ b/
dwmblocks.c
@@
-54,7
+54,11
@@
void getcmd(const Block *block, char *output)
char c;
int i = strlen(block->icon);
while((c = fgetc(cmdf)) != EOF)
+ {
output[i++] = c;
+ if(c == '\n')
+ break;
+ }
if (delim != '\0' && --i)
output[i++] = delim;
output[i++] = '\0';