mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
* elf/dl-load.c: Use alloca, not __alloca.
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user