Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 2 Feb 1999 16:39:32 +0000 (16:39 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 2 Feb 1999 16:39:32 +0000 (16:39 +0000)
* elf/dl-load.c: Use alloca, not __alloca.

ChangeLog
elf/dl-load.c

index 4f019f3..d01565b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,8 @@
        * nscd/nscd_getgr_r.c: Mark local functions as internal.
        * nscd/nscd_gethst_r.c: Likewise.
 
+       * elf/dl-load.c: Use alloca, not __alloca.
+
        * sysdeps/unix/sysv/linux/reboot.c: Make sure first parameter is
        correctly passed to the kernel even on 64bit platforms.
        Patch by Bruce Elliott <bde@nwlink.com>.
index cc3ac6e..07ac359 100644 (file)
@@ -1013,7 +1013,7 @@ open_path (const char *name, size_t namelen, int preloaded,
       return -1;
     }
 
-  buf = __alloca (max_dirnamelen + max_capstrlen + namelen);
+  buf = alloca (max_dirnamelen + max_capstrlen + namelen);
   do
     {
       struct r_search_path_elem *this_dir = *dirs;