mirror of git://sourceware.org/git/glibc.git
Update.
2004-11-22 Jakub Jelinek <jakub@redhat.com> * nscd/nscd_getai (__nscd_getai): Avoid memory and file descriptor leaks. * sysdeps/posix/getaddrinfo.c (gaih_inet): Free air. * sysdeps/unix/sysv/linux/mips/bits/siginfo.h (__SI_MAX_SIZE): * dirent/dirent.h: Add nonnull attributes.
This commit is contained in:
parent
8dd719970a
commit
6535f55f1a
|
|
@ -1,3 +1,9 @@
|
||||||
|
2004-11-22 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* nscd/nscd_getai (__nscd_getai): Avoid memory and file descriptor
|
||||||
|
leaks.
|
||||||
|
* sysdeps/posix/getaddrinfo.c (gaih_inet): Free air.
|
||||||
|
|
||||||
2004-11-15 Maciej W. Rozycki <macro@mips.com>
|
2004-11-15 Maciej W. Rozycki <macro@mips.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/mips/bits/siginfo.h (__SI_MAX_SIZE):
|
* sysdeps/unix/sysv/linux/mips/bits/siginfo.h (__SI_MAX_SIZE):
|
||||||
|
|
@ -9,7 +15,7 @@
|
||||||
|
|
||||||
2004-11-22 Ulrich Drepper <drepper@redhat.com>
|
2004-11-22 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* dirent/dirent.h: Add __nonnull attributes.
|
* dirent/dirent.h: Add nonnull attributes.
|
||||||
* dlfcn/dlfcn.h: Likewise.
|
* dlfcn/dlfcn.h: Likewise.
|
||||||
|
|
||||||
2004-11-20 Jakub Jelinek <jakub@redhat.com>
|
2004-11-20 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
|
||||||
|
|
@ -767,6 +767,8 @@ gaih_inet (const char *name, const struct gaih_service *service,
|
||||||
addrs += size;
|
addrs += size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
free (air);
|
||||||
|
|
||||||
if (at->family == AF_UNSPEC)
|
if (at->family == AF_UNSPEC)
|
||||||
return (GAIH_OKIFUNSPEC | -EAI_NONAME);
|
return (GAIH_OKIFUNSPEC | -EAI_NONAME);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue