Browse Source

fixed issue causing segfault on ARM systems

master
Aidan 5 years ago
parent
commit
09a00ab345
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      dwmblocks.c

+ 4
- 0
dwmblocks.c View File

@ -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';


Loading…
Cancel
Save