No need to save errno in fpe_signal_handler because this handler does not return.

This commit is contained in:
Juan Jose Garcia Ripoll 2012-08-15 20:02:18 +02:00
parent fa09c80800
commit c1794d9c38

View file

@ -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. */