From: Ali H. Fardan Date: Wed, 14 Sep 2016 14:42:48 +0000 (+0300) Subject: variable initialization is back X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=561de544e74487f5e7a9b51850d382fe2278a915;p=suckless%2Fslstatus.git variable initialization is back --- diff --git a/slstatus.c b/slstatus.c index 1a297f8..a13bf3b 100644 --- a/slstatus.c +++ b/slstatus.c @@ -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);