summaryrefslogtreecommitdiff
path: root/toolchain/uClibc/patches/null-pointer.patch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-06-18 16:47:51 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-06-18 16:47:51 +0200
commitf97dbcf294210864262595e1c8d55f5ceecb4d5d (patch)
tree577ad223082dcf884934409ac8a6289e0f1532e8 /toolchain/uClibc/patches/null-pointer.patch
parent943041c015d5932d9723e58af595dae696eda5e1 (diff)
fix broken uClibc
- after upgrade to gcc 4.4 ld.so in uClibc was broken - add gcc attribute always_inline for ld.so static functions - -Os does not automatically inline the code, use O2 especially for mips and uClibc compile
Diffstat (limited to 'toolchain/uClibc/patches/null-pointer.patch')
-rw-r--r--toolchain/uClibc/patches/null-pointer.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/toolchain/uClibc/patches/null-pointer.patch b/toolchain/uClibc/patches/null-pointer.patch
new file mode 100644
index 000000000..e77cd72b8
--- /dev/null
+++ b/toolchain/uClibc/patches/null-pointer.patch
@@ -0,0 +1,12 @@
+diff -Nur 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 13:49:14.000000000 +0100
++++ uClibc-0.9.30.1/libc/inet/getaddrinfo.c 2009-06-14 17:46:45.000000000 +0200
+@@ -187,6 +187,8 @@
+ }
+
+ 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;