From: Aaron Marcher Date: Fri, 9 Sep 2016 17:18:14 +0000 (+0200) Subject: fixed run_command behaviour for emtpy command output (uninitialized) X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=98f3985d3ee542fe98b8182ed8f4ced632032b31;p=suckless%2Fslstatus.git fixed run_command behaviour for emtpy command output (uninitialized) --- diff --git a/slstatus.c b/slstatus.c index 627d270..7b85a23 100644 --- a/slstatus.c +++ b/slstatus.c @@ -397,7 +397,7 @@ run_command(const char* command) { int good; FILE *fp = popen(command, "r"); - char buffer[64]; + char buffer[64] = ""; if (fp == NULL) { warn("Could not get command output for: %s", command);