1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
2001-05-23  kaz Kojima  <kkojima@rr.iij4u.or.jp>

	* sysdeps/sh/dl-machine.h (_dl_runtime_resolve): Handle newer PLT.
	(_dl_runtime_profile): Likewise..

2001-05-23  Thorsten Kukuk  <kukuk@suse.de>

	* sysdeps/posix/getaddrinfo.c: Support for AF_UNIX commented out.
	* posix/tst-getaddrinfo.c: Remove AF_UNIX test.

2001-05-19  H.J. Lu  <hjl@gnu.org>

	* elf/dl-deps.c (_dl_map_object_deps): Pass objname and
	errstring of the failed DSO to _dl_signal_error ().
This commit is contained in:
Ulrich Drepper
2001-05-23 23:56:31 +00:00
parent 2210704803
commit 64b7897d6d
5 changed files with 45 additions and 9 deletions

View File

@ -141,6 +141,7 @@ _dl_map_object_deps (struct link_map *map,
int errno_saved;
int errno_reason;
const char *errstring;
const char *objname;
auto inline void preload (struct link_map *map);
@ -221,7 +222,6 @@ _dl_map_object_deps (struct link_map *map,
{
/* Map in the needed object. */
struct link_map *dep;
const char *objname;
/* Recognize DSTs. */
name = expand_dst (l, strtab + d->d_un.d_val, 0);
@ -263,7 +263,6 @@ _dl_map_object_deps (struct link_map *map,
}
else if (d->d_tag == DT_AUXILIARY || d->d_tag == DT_FILTER)
{
const char *objname;
struct list *newp;
/* Recognize DSTs. */
@ -289,7 +288,6 @@ _dl_map_object_deps (struct link_map *map,
assert (errstring != NULL);
if (errstring != _dl_out_of_memory)
free ((char *) errstring);
errstring = NULL;
/* Simply ignore this error and continue the work. */
continue;
@ -541,5 +539,5 @@ out:
if (errno_reason)
_dl_signal_error (errno_reason == -1 ? 0 : errno_reason,
errstring ?: "", N_("cannot load shared object file"));
objname, errstring);
}