diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2017-10-01 15:52:56 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2017-10-01 15:53:15 -0700 |
commit | b68f8620561d7658b475eb512978d3c33d8a4547 (patch) | |
tree | c8f020413abe4033585fbb140e7dab24a2f025bf /ChangeLog | |
parent | 59c04e67631d370738b80923d42d4d1539d8f95f (diff) | |
download | glibc-b68f8620561d7658b475eb512978d3c33d8a4547.zip glibc-b68f8620561d7658b475eb512978d3c33d8a4547.tar.gz glibc-b68f8620561d7658b475eb512978d3c33d8a4547.tar.bz2 |
Hide internal regex functions [BZ #18822]
Hide internal regex functions to allow direct access within libc.so and
libc.a without using GOT nor PLT.
[BZ #18822]
* include/regex.h (__re_compile_fastmap): Add attribute_hidden.
(__regcomp): Add libc_hidden_proto.
(__regexec): Likewise.
(__regfree): Likewise.
* posix/regcomp.c (__regcomp): Add libc_hidden_def.
(__regfree): Likewise.
* posix/regexec.c (__regexec): Likewise.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1,6 +1,17 @@ 2017-10-01 H.J. Lu <hongjiu.lu@intel.com> [BZ #18822] + * include/regex.h (__re_compile_fastmap): Add attribute_hidden. + (__regcomp): Add libc_hidden_proto. + (__regexec): Likewise. + (__regfree): Likewise. + * posix/regcomp.c (__regcomp): Add libc_hidden_def. + (__regfree): Likewise. + * posix/regexec.c (__regexec): Likewise. + +2017-10-01 H.J. Lu <hongjiu.lu@intel.com> + + [BZ #18822] * include/utmp.h (__updwtmp): Add libc_hidden_proto. (__getutent): Likewise. (__getutid): Likewise. |