ソースを参照

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 年 前
コミット
6c8b6e9e78
1 ファイル変更1 行追加1 行削除
  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;