From: Ulrich Drepper Date: Tue, 3 Mar 1998 16:59:48 +0000 (+0000) Subject: (_dl_open): Call _dl_map_object with new argument. X-Git-Tag: cvs/before-sparc-2_0_x-branch~143 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7e4ee9906704e557059754d98b78ed5da732b24;p=thirdparty%2Fglibc.git (_dl_open): Call _dl_map_object with new argument. --- diff --git a/elf/dl-open.c b/elf/dl-open.c index 87cf4de967f..63a7091fffc 100644 --- a/elf/dl-open.c +++ b/elf/dl-open.c @@ -46,7 +46,7 @@ _dl_open (const char *file, int mode) struct r_debug *r; /* Load the named object. */ - new = _dl_map_object (NULL, file, lt_loaded, 0); + new = _dl_map_object (NULL, file, 0, lt_loaded, 0); if (new->l_searchlist) /* It was already open. */ return new;