mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
OOM condition fix
This commit is contained in:
parent
eb612bfdfc
commit
2ea70a5c73
@ -928,8 +928,10 @@ Curl_addrinfo *Curl_he2ai(const struct hostent *he, int port)
|
||||
prevai = ai;
|
||||
}
|
||||
|
||||
if(result != CURLE_OK)
|
||||
if(result != CURLE_OK) {
|
||||
Curl_freeaddrinfo(firstai);
|
||||
firstai = NULL;
|
||||
}
|
||||
|
||||
return firstai;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user