diff options
author | Ali H. Fardan <raiz@firemail.cc> | 2016-09-14 17:42:48 +0300 |
---|---|---|
committer | Ali H. Fardan <raiz@firemail.cc> | 2016-09-14 17:42:48 +0300 |
commit | 561de544e74487f5e7a9b51850d382fe2278a915 (patch) | |
tree | 2d121b922e034f20c9ee274306f0030bd09afe92 | |
parent | 35f7862744288411600b5200e3612b4ed204092d (diff) |
variable initialization is back
-rw-r--r-- | slstatus.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -407,7 +407,7 @@ static char * run_command(const char* command) { FILE *fp = popen(command, "r"); - char buffer[64]; + char buffer[64] = '\0'; if (fp == NULL) { warn("Could not get command output for: %s", command); |