]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
i386: Hide __old_glob64 [BZ #18822]
authorH.J. Lu <hjl.tools@gmail.com>
Sun, 20 Aug 2017 17:46:47 +0000 (10:46 -0700)
committerAurelien Jarno <aurelien@aurel32.net>
Sat, 2 Dec 2017 21:42:31 +0000 (22:42 +0100)
Hide internal __old_glob64 function to allow direct access within
libc.so and libc.a without using GOT nor PLT.

[BZ #18822]
* sysdeps/unix/sysv/linux/i386/glob64.c (__old_glob64): Add
libc_hidden_proto and libc_hidden_def.

(cherry picked from commit 2585d7b839559e665d5723734862fbe62264b25d)
(cherry picked from commit 2b54f16a8a237a1f3e6f8b974cafda09ed75d292)

ChangeLog
sysdeps/unix/sysv/linux/i386/glob64.c

index 9be47cd9ec87ad06c6bba12422f60852f2a3c153..e7f1e0feb720edd89cbcfa727d5c226e29f4cba7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2017-08-20  H.J. Lu  <hongjiu.lu@intel.com>
+
+       [BZ #18822]
+       * sysdeps/unix/sysv/linux/i386/glob64.c (__old_glob64): Add
+       libc_hidden_proto and libc_hidden_def.
+
 2017-10-22  H.J. Lu  <hongjiu.lu@intel.com>
 
        [BZ #21265]
index 802c957d6c2612b2ffcf42f2065ac7b0e2803dd8..30470c6ed989457d370a38e6a1a61b21feba4ef4 100644 (file)
@@ -53,6 +53,7 @@ libc_hidden_ver (__glob64, glob64)
 int __old_glob64 (const char *__pattern, int __flags,
                  int (*__errfunc) (const char *, int),
                  glob64_t *__pglob);
+libc_hidden_proto (__old_glob64);
 
 #undef dirent
 #define dirent __old_dirent64
@@ -72,5 +73,7 @@ int __old_glob64 (const char *__pattern, int __flags,
 
 #include <posix/glob.c>
 
+libc_hidden_def (__old_glob64);
+
 compat_symbol (libc, __old_glob64, glob64, GLIBC_2_1);
 #endif