diff options
author | Andreas Schwab <schwab@suse.de> | 2014-09-16 11:17:04 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2019-02-04 15:45:02 +0100 |
commit | 65f7767a914144ae303f7b9ae81865061793dcb9 (patch) | |
tree | 9af5f491383e603957b206d18336972572cde7c1 /sysdeps/x86_64 | |
parent | 3f635fb43389b54f682fc9ed2acc0b2aaf4a923d (diff) | |
download | glibc-65f7767a914144ae303f7b9ae81865061793dcb9.tar glibc-65f7767a914144ae303f7b9ae81865061793dcb9.tar.gz glibc-65f7767a914144ae303f7b9ae81865061793dcb9.tar.bz2 glibc-65f7767a914144ae303f7b9ae81865061793dcb9.zip |
Fix handling of collating elements in fnmatch (bug 17396, bug 16976)
This fixes the same bug in fnmatch that was fixed by commit 7e2f0d2d77 for
regexp matching. As a side effect it also removes the use of an unbound
VLA.
Diffstat (limited to 'sysdeps/x86_64')
-rw-r--r-- | sysdeps/x86_64/multiarch/wmemcmp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/x86_64/multiarch/wmemcmp.c b/sysdeps/x86_64/multiarch/wmemcmp.c index 136a7b05e1..826c90bb77 100644 --- a/sysdeps/x86_64/multiarch/wmemcmp.c +++ b/sysdeps/x86_64/multiarch/wmemcmp.c @@ -26,5 +26,6 @@ # define SYMBOL_NAME wmemcmp # include "ifunc-memcmp.h" -libc_ifunc_redirected (__redirect_wmemcmp, wmemcmp, IFUNC_SELECTOR ()); +libc_ifunc_redirected (__redirect_wmemcmp, __wmemcmp, IFUNC_SELECTOR ()); +weak_alias (__wmemcmp, wmemcmp) #endif |