This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pankaj.s01
Recipients pankaj.s01
Date 2015-05-27.16:30:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1432744245.29.0.369253683429.issue24302@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,
There is dead code reported in this issue and I think no need to check for NULL of 'handler' in function faulthandler_fatal_error() and file Python-3.4.3/Modules/faulthandler.c . where 'handler' is pointed to staic array faulthandler_handlers[] which never will be null inside loop with faulthandler_nsignals value and doesn't means to check for NULL outside of loop. but if there is possibility of 'handler' to be NULL then it should be check inside the loop until
handler->signum is not equal to signum and then break;
History
Date User Action Args
2015-05-27 16:30:45pankaj.s01setrecipients: + pankaj.s01
2015-05-27 16:30:45pankaj.s01setmessageid: <1432744245.29.0.369253683429.issue24302@psf.upfronthosting.co.za>
2015-05-27 16:30:45pankaj.s01linkissue24302 messages
2015-05-27 16:30:45pankaj.s01create