Commit 8e25d1b9 authored by Yang Tse's avatar Yang Tse
Browse files

hostip.c: fix Curl_loadhostpairs() OOM handling

parent 63e2718f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -782,8 +782,10 @@ CURLcode Curl_loadhostpairs(struct SessionHandle *data)
      /* Create an entry id, based upon the hostname and port */
      entry_id = create_hostcache_id(hostname, port);
      /* If we can't create the entry id, fail */
      if(!entry_id)
      if(!entry_id) {
        Curl_freeaddrinfo(addr);
        return CURLE_OUT_OF_MEMORY;
      }

      entry_len = strlen(entry_id);