Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
	* elf/dl-load.c: Use alloca, not __alloca.
  • Loading branch information
Ulrich Drepper committed Feb 2, 1999
1 parent 813f4f4 commit 5431ece
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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>.
Expand Down
2 changes: 1 addition & 1 deletion elf/dl-load.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5431ece

Please sign in to comment.