1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

* elf/dl-error.c (_dl_signal_error): Use __longjmp instead of longjmp.

* elf/dl-minimal.c (longjmp): Remove definition.
This commit is contained in:
Ulrich Drepper
2005-12-17 23:09:41 +00:00
parent 1f0996ef0d
commit b15cc6a1ef
3 changed files with 6 additions and 8 deletions

View File

@ -112,7 +112,8 @@ _dl_signal_error (int errcode, const char *objname, const char *occation,
lcatch->errstring = _dl_out_of_memory;
lcatch->malloced = false;
}
longjmp (lcatch->env, errcode ?: -1);
/* We do not restore the signal mask because none was saved. */
__longjmp (lcatch->env, errcode ?: -1);
}
else
{