mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
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:
parent
b90f9ebbb2
commit
6c8b6e9e78
@ -2713,7 +2713,7 @@ test_util_join_win_cmdline(void *ptr)
|
|||||||
};
|
};
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
char *joined_argv;
|
char *joined_argv = NULL;
|
||||||
|
|
||||||
(void)ptr;
|
(void)ptr;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user