Browse Source

Fix unreachable use-before-assign in test_util_join_win_cmdline

Apparently there is a compiler that believes this is something to
warn about.
Nick Mathewson 11 years ago
parent
commit
6c8b6e9e78
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/test/test_util.c

+ 1 - 1
src/test/test_util.c

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