]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #23433: Fix faulthandler._stack_overflow()
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 11 Feb 2015 13:23:35 +0000 (14:23 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Wed, 11 Feb 2015 13:23:35 +0000 (14:23 +0100)
commit7a5567a92cf0e0bcaae7dca8975328c9151fe1c7
tree3ce30b7bf86bf423c9f5197ce361c1ec58b002d7
parent8e36812e27f70bd6e4b3b85c9e9e858b0ac0df5e
Issue #23433: Fix faulthandler._stack_overflow()

Fix undefined behaviour: don't compare pointers. Use Py_uintptr_t type instead
of void*. It fixes test_faulthandler on Fedora 22 which now uses GCC 5.
Modules/faulthandler.c