From: Nick Mathewson Date: Fri, 15 Feb 2013 20:57:15 +0000 (-0500) Subject: Fix unreachable use-before-assign in test_util_join_win_cmdline X-Git-Tag: tor-0.2.4.11-alpha~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6c8b6e9e78429297e8d73a502d10dacf47efeea3;p=thirdparty%2Ftor.git Fix unreachable use-before-assign in test_util_join_win_cmdline Apparently there is a compiler that believes this is something to warn about. --- diff --git a/src/test/test_util.c b/src/test/test_util.c index b17e414255..c2cb4448e6 100644 --- a/src/test/test_util.c +++ b/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;