Browse Source

inet: remove noreturn attribute from res_nclose

Partially revert e9af4dfbd328e9f3bba235fdb2d1027dd2dbbcde

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Bernhard Reutner-Fischer 11 years ago
parent
commit
3d791bda2e
1 changed files with 2 additions and 4 deletions
  1. 2 4
      libc/inet/resolv.c

+ 2 - 4
libc/inet/resolv.c

@@ -3530,7 +3530,7 @@ __res_vinit(res_state rp, int preinit)
 	return 0;
 }
 
-static void attribute_noreturn
+static void
 __res_iclose(void)
 {
 	__UCLIBC_MUTEX_LOCK(__resolv_lock);
@@ -3549,9 +3549,7 @@ __res_iclose(void)
 	}
 #endif
 	memset(&_res, 0, sizeof(_res));
-	/* the loop is only to make gcc happy */
-	while(1)
-		__UCLIBC_MUTEX_UNLOCK(__resolv_lock);
+	__UCLIBC_MUTEX_UNLOCK(__resolv_lock);
 }
 
 /*