mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 22:01:36 -08:00
No need to save errno in fpe_signal_handler because this handler does not return.
This commit is contained in:
parent
fa09c80800
commit
c1794d9c38
1 changed files with 1 additions and 1 deletions
|
|
@ -607,8 +607,8 @@ handler_fn_prototype(process_interrupt_handler, int sig, siginfo_t *siginfo, voi
|
|||
static void
|
||||
handler_fn_prototype(fpe_signal_handler, int sig, siginfo_t *info, void *data)
|
||||
{
|
||||
int code;
|
||||
cl_object condition;
|
||||
int code, old_errno = errno;
|
||||
cl_env_ptr the_env;
|
||||
reinstall_signal(sig, fpe_signal_handler);
|
||||
/* The lisp environment might not be installed. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue