Commit c79a5581 authored by Tim Peters's avatar Tim Peters

Missed a return from a signal handler -- thanks to /F for pointing

it out!
parent 21e59ad5
...@@ -136,7 +136,7 @@ signal_handler(int sig_num) ...@@ -136,7 +136,7 @@ signal_handler(int sig_num)
reset until explicit re-instated. reset until explicit re-instated.
Don't clear the 'func' field as it is our pointer Don't clear the 'func' field as it is our pointer
to the Python handler... */ to the Python handler... */
return; Py_RETURN_FROM_SIGNAL_HANDLER(0);
} }
#endif #endif
#ifdef HAVE_SIGINTERRUPT #ifdef HAVE_SIGINTERRUPT
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment