From 2ea70a5c73561b4b0ecf033edb17d4db8317407e Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Fri, 17 Oct 2008 12:49:02 +0000 Subject: [PATCH] OOM condition fix --- lib/hostip.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/hostip.c b/lib/hostip.c index 2fd99ef9f..95029e6b2 100644 --- a/lib/hostip.c +++ b/lib/hostip.c @@ -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; }