From: Stan Shebs Date: Thu, 29 Mar 2018 03:31:52 +0000 (-0700) Subject: Add a hunk lost in merge X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=641cae4c36e4d34ebc14690f5db05b3330be46f5;p=thirdparty%2Fglibc.git Add a hunk lost in merge --- diff --git a/dlfcn/dlopen.c b/dlfcn/dlopen.c index c35a9eb66b2..faf7a48ea71 100644 --- a/dlfcn/dlopen.c +++ b/dlfcn/dlopen.c @@ -96,6 +96,14 @@ __dlopen_with_offset (const char *file, off_t offset, int mode DL_CALLER_DECL) { if (!rtld_active ()) return _dlfcn_hook->dlopen_with_offset (file, offset, mode, DL_CALLER); + + struct dlopen_args oargs; + oargs.file = file; + oargs.offset = offset; + oargs.mode = mode; + oargs.caller = DL_CALLER; + + return __dlopen_common (&oargs); } strong_alias (__dlopen_with_offset, __google_dlopen_with_offset) # endif