Fix unreachable use-before-assign in test_util_join_win_cmdline

Apparently there is a compiler that believes this is something to
warn about.
This commit is contained in:
Nick Mathewson 2013-02-15 15:57:15 -05:00
parent b90f9ebbb2
commit 6c8b6e9e78

View File

@ -2713,7 +2713,7 @@ test_util_join_win_cmdline(void *ptr)
};
int i;
char *joined_argv;
char *joined_argv = NULL;
(void)ptr;