mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 02:03:35 +08:00
Update.
2003-10-08 Jakub Jelinek <jakub@redhat.com> * sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Don't generate two identical copies of strings.
This commit is contained in:
parent
e700a90879
commit
943ae89d56
@ -1,3 +1,8 @@
|
||||
2003-10-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Don't generate
|
||||
two identical copies of strings.
|
||||
|
||||
2003-10-06 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* posix/bug-regex11.c: Add some more tests which fail so far.
|
||||
|
@ -454,7 +454,7 @@ _dl_important_hwcaps (const char *platform, size_t platform_len, size_t *sz,
|
||||
}
|
||||
else
|
||||
{
|
||||
n = 1 << cnt;
|
||||
n = 1 << (cnt - 1);
|
||||
do
|
||||
{
|
||||
n -= 2;
|
||||
|
Loading…
Reference in New Issue
Block a user