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:
Ulrich Drepper 2003-10-08 21:12:18 +00:00
parent e700a90879
commit 943ae89d56
2 changed files with 6 additions and 1 deletions

View file

@ -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.

View file

@ -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;