]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(_dl_sysdep_start) [DL_SYSDEP_INIT]: Invoke this macro before calling DL_MAIN.
authorRoland McGrath <roland@gnu.org>
Sat, 2 Dec 1995 09:03:14 +0000 (09:03 +0000)
committerRoland McGrath <roland@gnu.org>
Sat, 2 Dec 1995 09:03:14 +0000 (09:03 +0000)
sysdeps/generic/dl-sysdep.c

index 49379761ad23b2a49a00608342c755a966f36119..5337ed6936f05a1110f31ad4543c42c6bcab5a1b 100644 (file)
@@ -76,6 +76,10 @@ _dl_sysdep_start (void **start_argptr,
 
   _dl_secure = uid != euid || gid != egid;
 
+#ifdef DL_SYSDEP_INIT
+  DL_SYSDEP_INIT;
+#endif
+
   (*dl_main) (phdr, phnum, &user_entry);
   return user_entry;
 }