Fix potentially uninitialised variables in the Windows tools

This commit is contained in:
Nick Clifton
2022-05-19 15:05:12 +01:00
parent 18bd474461
commit 95086e1e54
7 changed files with 19 additions and 7 deletions

View File

@ -350,7 +350,7 @@ run (const char *what, char *args)
int pid, wait_status, retcode;
int i;
const char **argv;
char *errmsg_fmt, *errmsg_arg;
char *errmsg_fmt = NULL, *errmsg_arg = NULL;
char *temp_base = choose_temp_base ();
int in_quote;
char sep;