From c7a9e07909484c30707bcae70d5eae3e44d91b71 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 30 Jun 2004 11:32:16 +0000 Subject: [PATCH] simplified the check for when to free() the buf data --- lib/hostip4.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/hostip4.c b/lib/hostip4.c index f380d3ef8..b0196d15a 100644 --- a/lib/hostip4.c +++ b/lib/hostip4.c @@ -362,8 +362,8 @@ Curl_addrinfo *Curl_getaddrinfo(struct connectdata *conn, if(h) { ai = Curl_he2ai(h, port); - if (h == buf) /* used a *_r() function */ - free(h); + if (buf) /* used a *_r() function */ + free(buf); } return ai;