summaryrefslogtreecommitdiff
path: root/patches/uClibc/0.9.30/150-getaddrinfo-segfault-ipv6-and-ipv4.patch
diff options
context:
space:
mode:
authorBryan Hundven <bryanhundven@gmail.com>2015-11-10 06:47:17 (GMT)
committerBryan Hundven <bryanhundven@gmail.com>2015-11-11 16:27:33 (GMT)
commit930fa77076874655179341433b4f8066deefb0b8 (patch)
treea4f0045b6706d203eb89ee22654b56d0f7448565 /patches/uClibc/0.9.30/150-getaddrinfo-segfault-ipv6-and-ipv4.patch
parent83403825ee654bcf214a9329d429bcf9603acad5 (diff)
uClibc: Reduce supported versions
This commit reduces the number of supported versions to: * 0.9.33.2 * custom location Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'patches/uClibc/0.9.30/150-getaddrinfo-segfault-ipv6-and-ipv4.patch')
-rw-r--r--patches/uClibc/0.9.30/150-getaddrinfo-segfault-ipv6-and-ipv4.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/patches/uClibc/0.9.30/150-getaddrinfo-segfault-ipv6-and-ipv4.patch b/patches/uClibc/0.9.30/150-getaddrinfo-segfault-ipv6-and-ipv4.patch
deleted file mode 100644
index 40f2928..0000000
--- a/patches/uClibc/0.9.30/150-getaddrinfo-segfault-ipv6-and-ipv4.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From: Tomoyoshi ASANO <asa@lineo.co.jp>
-Message ID: <20081208073522.0AEF.22C34B8C@lineo.co.jp>
-
-Hello,
-
-I have SEGV at busybox's telnet with uClibc-0.9.30.
-It seem the current uClibc-trunk has the same problem.
-
-Thanks,
--- Tom
-
-diff -ru uClibc-0.9.30.orig/libc/inet/getaddrinfo.c uClibc-0.9.30/libc/inet/getaddrinfo.c
---- uClibc-0.9.30.orig/libc/inet/getaddrinfo.c 2008-10-28 17:25:10.000000000 +0100
-+++ uClibc-0.9.30/libc/inet/getaddrinfo.c 2009-02-26 14:20:06.000000000 +0100
-@@ -186,7 +186,7 @@
- return seen;
- }
-
-- for (runp = ifa; runp != NULL; runp = runp->ifa_next)
-+ for (runp = ifa; runp != NULL; runp = runp->ifa_next) {
- #if defined __UCLIBC_HAS_IPV4__
- if (runp->ifa_addr->sa_family == PF_INET)
- seen |= SEEN_IPV4;
-@@ -195,7 +195,7 @@
- if (runp->ifa_addr->sa_family == PF_INET6)
- seen |= SEEN_IPV6;
- #endif /* __UCLIBC_HAS_IPV6__ */
--
-+ }
- freeifaddrs(ifa);
- }
- #else