From: Guenter Knauf Date: Sun, 1 Sep 2013 21:08:29 +0000 (+0200) Subject: Killed warning 'res' might be used uninitialized. X-Git-Tag: curl-7_33_0~175 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=97ed1ac905a02e27c2a61071103ae016ba0fed44;p=thirdparty%2Fcurl.git Killed warning 'res' might be used uninitialized. --- diff --git a/tests/libtest/lib1512.c b/tests/libtest/lib1512.c index 93d5ea9086..447ffb2183 100644 --- a/tests/libtest/lib1512.c +++ b/tests/libtest/lib1512.c @@ -34,7 +34,7 @@ int test(char *URL) { - CURLcode res; + CURLcode res = 0; CURL *curl[NUM_HANDLES] = {NULL, NULL}; char *port = libtest_arg3; char *address = libtest_arg2;