getinfo: HTTP CONNECT code not reset between transfers
authorMarcel Raad <marcelraad@users.sf.net>
Tue, 10 Jun 2014 20:44:51 +0000 (22:44 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 10 Jun 2014 20:44:51 +0000 (22:44 +0200)
httpproxycode is not reset in Curl_initinfo, so a 407 is not reset even
if curl_easy_reset is called between transfers.

Bug: http://curl.haxx.se/bug/view.cgi?id=1380

lib/getinfo.c

index e6d07c2..bbda35d 100644 (file)
@@ -53,6 +53,7 @@ CURLcode Curl_initinfo(struct SessionHandle *data)
   pro->t_redirect = 0;
 
   info->httpcode = 0;
+  info->httpproxycode = 0;
   info->httpversion = 0;
   info->filetime = -1; /* -1 is an illegal time and thus means unknown */
   info->timecond = FALSE;