aboutsummaryrefslogtreecommitdiff
path: root/lib/hostip.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-10-17 12:49:02 +0000
committerYang Tse <yangsita@gmail.com>2008-10-17 12:49:02 +0000
commit2ea70a5c73561b4b0ecf033edb17d4db8317407e (patch)
treecb3173cf090d69db2b49ed50f5016cfd0059a8ea /lib/hostip.c
parenteb612bfdfc2801ddb44c5db3352beb867b5c4868 (diff)
OOM condition fix
Diffstat (limited to 'lib/hostip.c')
-rw-r--r--lib/hostip.c4
1 files changed, 3 insertions, 1 deletions
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;
}