commit 09a00ab345f1c1c4bce5496f7c7d054476e35392
parent b685f2805f483c2a0df89695ac7a7f472172debe
Author: Aidan <torrinfail@gmail.com>
Date: Sat, 30 Nov 2019 02:05:10 -0700
fixed issue causing segfault on ARM systems
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git 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';