mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
transfer.c: fix loadhostpairs() OOM handling
This commit is contained in:
parent
0a5bbb2ac1
commit
6b59bc1805
@ -1437,8 +1437,10 @@ static CURLcode loadhostpairs(struct SessionHandle *data)
|
||||
if(data->share)
|
||||
Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
|
||||
|
||||
if(!dns)
|
||||
if(!dns) {
|
||||
Curl_freeaddrinfo(addr);
|
||||
return CURLE_OUT_OF_MEMORY;
|
||||
}
|
||||
}
|
||||
}
|
||||
data->change.resolve = NULL; /* dealt with now */
|
||||
|
Loading…
Reference in New Issue
Block a user