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:
@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user