mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-02-05 02:19:11 +00:00
libc/uClibc: add new patch to fix NULL pointer dereference
(transplanted from 3d8f6d826f21342b6172813384f3e5e1f09e8a71)
This commit is contained in:
parent
dc3fef8d25
commit
c3859e978c
@ -0,0 +1,12 @@
|
|||||||
|
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;
|
Loading…
x
Reference in New Issue
Block a user