]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
simplified the check for when to free() the buf data
authorDaniel Stenberg <daniel@haxx.se>
Wed, 30 Jun 2004 11:32:16 +0000 (11:32 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 30 Jun 2004 11:32:16 +0000 (11:32 +0000)
lib/hostip4.c

index f380d3ef8ee5b60f67ff8020cb1591b780592315..b0196d15acc5ea66eb436bc5483b1a47419c3fe7 100644 (file)
@@ -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;