variable initialization is back
authorAli H. Fardan <raiz@firemail.cc>
Wed, 14 Sep 2016 14:42:48 +0000 (17:42 +0300)
committerAli H. Fardan <raiz@firemail.cc>
Wed, 14 Sep 2016 14:42:48 +0000 (17:42 +0300)
slstatus.c

index 1a297f8bf6b161b516daa18a0ffe6f73d6a347f0..a13bf3be2e5c1c13b3cc8762931824f4615f628b 100644 (file)
@@ -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);