diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/posix/getaddrinfo.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2011-06-10 Andreas Schwab <schwab@redhat.com> + + * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix logic allocating + tmpbuf. + 2011-06-10 Roland McGrath <roland@hack.frob.com> * Makerules (shlib.lds): Fail if the linker script comes out empty. diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c index 1e017b2ed6..469abe22de 100644 --- a/sysdeps/posix/getaddrinfo.c +++ b/sysdeps/posix/getaddrinfo.c @@ -821,7 +821,7 @@ gaih_inet (const char *name, const struct gaih_service *service, size_t tmpbuflen = 1024; malloc_tmpbuf = !__libc_use_alloca (alloca_used + tmpbuflen); assert (tmpbuf == NULL); - if (malloc_tmpbuf) + if (!malloc_tmpbuf) tmpbuf = alloca_account (tmpbuflen, alloca_used); else { |