Browse Source

Fix a bug causing an infinite loop in getaddrinfo (closes: #3344)

SVN-Revision: 11106
Nicolas Thill 18 years ago
parent
commit
28a650e13a
1 changed files with 14 additions and 0 deletions
  1. 14 0
      toolchain/uClibc/patches/009-fix_getaddrinfo_infinite_loop.patch

+ 14 - 0
toolchain/uClibc/patches/009-fix_getaddrinfo_infinite_loop.patch

@@ -0,0 +1,14 @@
+diff -ruN uClibc-0.9.29.orig/libc/inet/getaddrinfo.c uClibc-0.9.29/libc/inet/getaddrinfo.c
+--- uClibc-0.9.29.orig/libc/inet/getaddrinfo.c	2006-01-22 20:35:08.000000000 +0100
++++ uClibc-0.9.29/libc/inet/getaddrinfo.c	2008-05-11 03:33:18.000000000 +0200
+@@ -858,7 +858,10 @@
+ 	if (hints->ai_family == g->family || hints->ai_family == AF_UNSPEC)
+ 	{
+ 	    if ((hints->ai_flags & AI_ADDRCONFIG) && !addrconfig(g->family))
++	    {
++		g++;
+ 		continue;
++	    }
+ 	    j++;
+ 	    if (pg == NULL || pg->gaih != g->gaih)
+ 	    {