From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2178) id 923DC385AC0A; Thu, 4 Aug 2022 18:56:39 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 923DC385AC0A Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Florian Weimer To: glibc-cvs@sourceware.org Subject: [glibc/release/2.35/master] dlfcn: Pass caller pointer to static dlopen implementation (bug 29446) X-Act-Checkin: glibc X-Git-Author: Florian Weimer X-Git-Refname: refs/heads/release/2.35/master X-Git-Oldrev: 0e5b239f45992e4b54c6f946ecb0c410afc8bb08 X-Git-Newrev: 8c172a6cb0dda3eb088d37a407bd0506a96a8002 Message-Id: <20220804185639.923DC385AC0A@sourceware.org> Date: Thu, 4 Aug 2022 18:56:39 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Aug 2022 18:56:39 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=8c172a6cb0dda3eb088d37a407bd0506a96a8002 commit 8c172a6cb0dda3eb088d37a407bd0506a96a8002 Author: Florian Weimer Date: Thu Aug 4 17:54:48 2022 +0200 dlfcn: Pass caller pointer to static dlopen implementation (bug 29446) Fixes commit 0c1c3a771eceec46e66ce1183cf988e2303bd373 ("dlfcn: Move dlopen into libc"). (cherry picked from commit ed0185e4129130cbe081c221efb758fb400623ce) Diff: --- NEWS | 1 + dlfcn/dlopen.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 9b162ca846..fdb7a11b15 100644 --- a/NEWS +++ b/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 diff --git a/dlfcn/dlopen.c b/dlfcn/dlopen.c index 2696dde4b1..9b07b4e132 100644 --- a/dlfcn/dlopen.c +++ b/dlfcn/dlopen.c @@ -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 *