mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
* sysdeps/generic/unwind-dw2.c (extract_cie_info): Add a cast.
* elf/dl-error.c (_dl_signal_error): Use .__jmpbuf in __longjmp call.
This commit is contained in:
@ -113,7 +113,7 @@ _dl_signal_error (int errcode, const char *objname, const char *occation,
|
||||
lcatch->malloced = false;
|
||||
}
|
||||
/* We do not restore the signal mask because none was saved. */
|
||||
__longjmp (lcatch->env, errcode ?: -1);
|
||||
__longjmp (lcatch->env[0].__jmpbuf, errcode ?: -1);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user