variable initialization is back
This commit is contained in:
parent
35f7862744
commit
561de544e7
1 changed files with 1 additions and 1 deletions
|
@ -407,7 +407,7 @@ static char *
|
||||||
run_command(const char* command)
|
run_command(const char* command)
|
||||||
{
|
{
|
||||||
FILE *fp = popen(command, "r");
|
FILE *fp = popen(command, "r");
|
||||||
char buffer[64];
|
char buffer[64] = '\0';
|
||||||
|
|
||||||
if (fp == NULL) {
|
if (fp == NULL) {
|
||||||
warn("Could not get command output for: %s", command);
|
warn("Could not get command output for: %s", command);
|
||||||
|
|
Loading…
Reference in a new issue