+2001-11-06 Ulrich Drepper <drepper@redhat.com>
+
+ * elf/dl-load.c (_dl_map_object_from_fd): Don't call
+ _dl_signal_error directly, always use lose. Set fd to -1 after
+ file is closed.
+ (lose): Don't call close if fd == -1.
+
2001-11-07 Kaoru Fukui <k_fukui@highway.ne.jp>
* manual/charset.texi: Fix typo @w[ISO 6937] to @w{ISO 6937}.
which use `alloca'. */
int *a = alloca (sizeof (int));
a[0] = fd;
- (void) __close (a[0]);
+ /* The file might already be closed. */
+ if (a[0] != -1)
+ (void) __close (a[0]);
if (l != NULL)
{
/* Remove the stillborn object from the list and free it. */
c->mapoff = ph->p_offset & ~(ph->p_align - 1);
/* Optimize a common case. */
- if ((PF_R | PF_W | PF_X) == 7
- && (PROT_READ | PROT_WRITE | PROT_EXEC) == 7)
+ if ((PF_R | PF_W | PF_X) == 7)
c->prot = _dl_pf_to_prot[ph->p_flags & (PF_R | PF_W | PF_X)];
else
{
/* We are done mapping in the file. We no longer need the descriptor. */
__close (fd);
+ /* Signal that we closed the file. */
+ fd = -1;
if (l->l_type == lt_library && type == ET_EXEC)
l->l_type = lt_executable;
free (l);
- _dl_signal_error (0, name, NULL,
- N_("shared object cannot be dlopen()ed"));
+ errstring = N_("shared object cannot be dlopen()ed");
+ goto call_lose;
}
if (l->l_info[DT_HASH])
cp[0] = '\0';
else
cp[-1] = '\0';
- if (first)
- {
- _dl_debug_printf_c ("%s", buf);
- first = 0;
- }
- else
- _dl_debug_printf_c (":%s", buf);
+
+ _dl_debug_printf_c (first ? "%s" : ":%s", buf);
+ first = 0;
}
++list;