Skip to content
Snippets Groups Projects
Commit 36e9507e authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

reverted. twas no memory leak and the "fix" didn't even compile on windows...

parent 1fde1431
No related branches found
No related tags found
No related merge requests found
......@@ -125,8 +125,6 @@ struct hostent *Curl_gethost(struct SessionHandle *data,
{
struct hostent *h = NULL;
unsigned long in;
#ifdef HAVE_GETHOSTBYNAME_R
int ret; /* this variable is unused on several platforms but used on some */
#define CURL_NAMELOOKUP_SIZE 9000
......@@ -138,7 +136,7 @@ struct hostent *Curl_gethost(struct SessionHandle *data,
if(!buf)
return NULL; /* major failure */
*bufp = buf;
#endif
ret = 0; /* to prevent the compiler warning */
if ( (in=inet_addr(hostname)) != INADDR_NONE ) {
......@@ -208,9 +206,10 @@ struct hostent *Curl_gethost(struct SessionHandle *data,
}
#else
else {
*bufp=NULL; /* zero this always */
if ((h = gethostbyname(hostname)) == NULL ) {
infof(data, "gethostbyname(2) failed for %s\n", hostname);
free(buf);
*bufp=NULL;
}
#endif
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment