From: Daniel Stenberg Date: Thu, 13 Nov 2003 07:33:51 +0000 (+0000) Subject: don't log failed socket() calls X-Git-Tag: curl-7_11_0~245 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=776f0bd95e92f72e16d9e836f92d83a313bbedd7;p=curl don't log failed socket() calls --- diff --git a/lib/memdebug.c b/lib/memdebug.c index 83cc5d307..ba3c964c9 100644 --- a/lib/memdebug.c +++ b/lib/memdebug.c @@ -204,7 +204,7 @@ void curl_dofree(void *ptr, int line, const char *source) int curl_socket(int domain, int type, int protocol, int line, char *source) { int sockfd=(socket)(domain, type, protocol); - if(logfile) + if(logfile && (sockfd!=-1)) fprintf(logfile, "FD %s:%d socket() = %d\n", source, line, sockfd); return sockfd;