From 455663ba5ecdedd6d338272bdc93ff9670bcb702 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 16 Mar 2001 15:44:38 +0000 Subject: corrected the close to sclose() so that the memdebug stuff works --- lib/if2ip.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/if2ip.c b/lib/if2ip.c index 0acc3d6c8..01076c9a0 100644 --- a/lib/if2ip.c +++ b/lib/if2ip.c @@ -95,6 +95,7 @@ char *Curl_if2ip(char *interface, char *buf, int buf_size) strcpy(req.ifr_name, interface); req.ifr_addr.sa_family = AF_INET; if (SYS_ERROR == ioctl(dummy, SIOCGIFADDR, &req, sizeof(req))) { + sclose(dummy); return NULL; } else { @@ -109,7 +110,7 @@ char *Curl_if2ip(char *interface, char *buf, int buf_size) ip[buf_size - 1] = 0; #endif } - close(dummy); + sclose(dummy); } return ip; } -- cgit v1.2.3