diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-09-11 11:25:47 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-09-11 11:25:47 +0000 |
commit | 5c184cfc0d71a928b28ace2778bbe5064917f4da (patch) | |
tree | 3abfc551a5f6eb1ca6e76ae04dbce7617477097b | |
parent | 055022a55fedb0a1a5c299d4ba59ed5620025928 (diff) |
stupid mistake rectified by Jeff Pohlmeyer
-rw-r--r-- | lib/url.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1688,9 +1688,10 @@ static void conn_free(struct connectdata *conn) CURLcode Curl_disconnect(struct connectdata *conn) { - struct SessionHandle *data = conn->data; + struct SessionHandle *data; if(!conn) return CURLE_OK; /* this is closed and fine already */ + data = conn->data; #if defined(CURLDEBUG) && defined(AGGRESIVE_TEST) /* scan for DNS cache entries still marked as in use */ |