mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-08 10:20:15 +00:00
dlfcn: Pass caller pointer to static dlopen implementation (bug 29446)
Fixes commit0c1c3a771e
("dlfcn: Move dlopen into libc"). (cherry picked from commited0185e412
)
This commit is contained in:
parent
0e5b239f45
commit
8c172a6cb0
1
NEWS
1
NEWS
@ -45,6 +45,7 @@ The following bugs are resolved with this release:
|
||||
[29214] nptl: pthread_setcanceltype fails to set type
|
||||
[29225] network: Mistyped define statement in socket/sys/socket.h in
|
||||
line 184
|
||||
[29446] _dlopen now ignores dl_caller argument in static mode
|
||||
|
||||
|
||||
Version 2.35
|
||||
|
@ -90,7 +90,7 @@ compat_symbol (libdl, ___dlopen, dlopen, GLIBC_2_1);
|
||||
void *
|
||||
__dlopen (const char *file, int mode, void *dl_caller)
|
||||
{
|
||||
return dlopen_implementation (file, mode, RETURN_ADDRESS (0));
|
||||
return dlopen_implementation (file, mode, dl_caller);
|
||||
}
|
||||
|
||||
void *
|
||||
|
Loading…
Reference in New Issue
Block a user