diff options
author | Joseph Myers <joseph@codesourcery.com> | 2015-06-17 20:15:22 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2015-06-17 20:15:22 +0000 |
commit | 45dcd79f6eb37ad4e9e6967f1d459ffc3629eb1f (patch) | |
tree | bbe261f04108b8145b0f72eca98e6ae18bc549d2 /NEWS | |
parent | eb1fae6a450b3cce5a75c1ed1a734520c56a6457 (diff) | |
download | glibc-45dcd79f6eb37ad4e9e6967f1d459ffc3629eb1f.tar.gz glibc-45dcd79f6eb37ad4e9e6967f1d459ffc3629eb1f.tar.xz glibc-45dcd79f6eb37ad4e9e6967f1d459ffc3629eb1f.zip |
Fix swscanf vswscanf namespace (bug 18542).
swscanf (added in C90 Amendment 1, present in UNIX98) calls vswscanf (added in C99, not in C90 Amendment 1 or UNIX98). This patch fixes this by using __vswscanf instead and making vswscanf into a weak alias. (I intend to add conform/ test support for C90 Amendment 1 - and various other standard versions supported by glibc but not yet by conform/ tests - at some point, once the results for currently tested standards are cleaner.) Tested for x86_64 and x86 (testsuite, and that installed stripped shared libraries are unchanged by the patch). [BZ #18542] * libio/iovswscanf.c (__vswscanf): Use libc_hidden_def. (vswscanf): Use ldbl_weak_alias instead of ldbl_strong_alias * include/wchar.h (__vswscanf): Declare. Use libc_hidden_proto. * libio/swscanf.c (__swscanf): Call __vswscanf instead of vswscanf. * conform/Makefile (test-xfail-UNIX98/wchar.h/linknamespace): Remove variable.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NEWS b/NEWS index 17a11aba16..d501b31243 100644 --- a/NEWS +++ b/NEWS @@ -22,7 +22,7 @@ Version 2.22 18324, 18333, 18346, 18397, 18409, 18410, 18412, 18418, 18422, 18434, 18444, 18468, 18469, 18470, 18479, 18483, 18495, 18496, 18497, 18498, 18507, 18512, 18519, 18520, 18522, 18527, 18528, 18529, 18530, 18532, - 18533, 18534, 18536, 18539, 18540. + 18533, 18534, 18536, 18539, 18540, 18542. * Cache information can be queried via sysconf() function on s390 e.g. with _SC_LEVEL1_ICACHE_SIZE as argument. |