diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-07-04 18:06:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-07-04 18:06:39 +0000 |
commit | 1311e86e432fde7e3ea44eb33e8b8472f710dd61 (patch) | |
tree | e15c0dd38128a7454e4c48010b9d7b255f8d8e28 /ChangeLog | |
parent | 57c9179cab174f606a05b0372600efedd3331b92 (diff) | |
download | glibc-1311e86e432fde7e3ea44eb33e8b8472f710dd61.tar.gz glibc-1311e86e432fde7e3ea44eb33e8b8472f710dd61.tar.xz glibc-1311e86e432fde7e3ea44eb33e8b8472f710dd61.zip |
* elf/dl-sysdep.c (_dl_important_hwcaps): Add integer overflow check.
* elf/dl-minimal.c (__libc_memalign): Likewise. Handle malloc (0). Return NULL if mmap failed instead of asserting it does not. (calloc): Check for integer overflow. * elf/dl-minimal.c (__strtoul_internal): Fix parsing of numbers bigger than LONG_MAX / 10.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 0a48667197..c1cdbdb2e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2007-07-01 Jakub Jelinek <jakub@redhat.com> + + * elf/dl-sysdep.c (_dl_important_hwcaps): Add integer overflow check. + * elf/dl-minimal.c (__libc_memalign): Likewise. Handle malloc (0). + Return NULL if mmap failed instead of asserting it does not. + (calloc): Check for integer overflow. + + * elf/dl-minimal.c (__strtoul_internal): Fix parsing of numbers bigger + than LONG_MAX / 10. + 2007-07-03 Jakub Jelinek <jakub@redhat.com> [BZ #4702] |