From 776f0bd95e92f72e16d9e836f92d83a313bbedd7 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 13 Nov 2003 07:33:51 +0000 Subject: don't log failed socket() calls --- lib/memdebug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/memdebug.c') 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; -- cgit v1.2.3