aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 44e2328fb..c6e19df02 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -1814,7 +1814,8 @@ CURLcode Curl_connect(struct UrlData *data,
int index;
index = conn->connectindex; /* get the index */
Curl_disconnect(conn); /* close the connection */
- data->connects[index]=NULL; /* clear the pointer */
+ if(-1 != index)
+ data->connects[index]=NULL; /* clear the pointer */
}
}
return code;