boostorg / python

Boost.org python module
http://boostorg.github.io/python
Boost Software License 1.0
465 stars 201 forks source link

Fix UB in instance_dealloc #422

Open vient opened 12 months ago

vient commented 12 months ago

Do not use dynamic_cast after destroying object, it is not correct and leads to NULL pointer dereference with some compilers

This fix worked for me, no more SIGSEGVs.

Fix #421