Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: [26202] trunk/buildroot/toolchain/uClibc
@ 2009-04-24 18:42 jacmet at uclibc.org
  2009-04-27  8:26 ` Sven Neumann
  0 siblings, 1 reply; 3+ messages in thread
From: jacmet at uclibc.org @ 2009-04-24 18:42 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2009-04-24 18:42:18 +0000 (Fri, 24 Apr 2009)
New Revision: 26202

Log:
toolchain/uClibc: 0.9.30.1 getaddrinfo fix for intfs without address

From uClibc r24336.

Added:
   trunk/buildroot/toolchain/uClibc/uClibc-0.9.30.1-fix-getaddrinfo.patch


Changeset:
Added: trunk/buildroot/toolchain/uClibc/uClibc-0.9.30.1-fix-getaddrinfo.patch
===================================================================
--- trunk/buildroot/toolchain/uClibc/uClibc-0.9.30.1-fix-getaddrinfo.patch	                        (rev 0)
+++ trunk/buildroot/toolchain/uClibc/uClibc-0.9.30.1-fix-getaddrinfo.patch	2009-04-24 18:42:18 UTC (rev 26202)
@@ -0,0 +1,13 @@
+[PATCH]: runp->ifa_addr can be NULL. Backport of r24336.
+diff -Narup uClibc-0.9.30.1.orig/libc/inet/getaddrinfo.c uClibc-0.9.30.1/libc/inet/getaddrinfo.c
+--- uClibc-0.9.30.1.orig/libc/inet/getaddrinfo.c	2009-02-26 21:49:14.000000000 +0900
++++ uClibc-0.9.30.1/libc/inet/getaddrinfo.c	2009-03-06 00:59:23.000000000 +0900
+@@ -187,6 +187,8 @@ static unsigned __check_pf(void)
+ 		}
+ 
+ 		for (runp = ifa; runp != NULL; runp = runp->ifa_next) {
++			if (runp->ifa_addr == NULL)
++				continue;
+ #if defined __UCLIBC_HAS_IPV4__
+ 			if (runp->ifa_addr->sa_family == PF_INET)
+ 				seen |= SEEN_IPV4;

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-04-27 10:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-24 18:42 [Buildroot] svn commit: [26202] trunk/buildroot/toolchain/uClibc jacmet at uclibc.org
2009-04-27  8:26 ` Sven Neumann
2009-04-27 10:11   ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox