Commit ce08e370 by Henry Schreiner Committed by GitHub

fix: handle NULL correctly (#5145)

parent 86a64290
...@@ -2780,7 +2780,7 @@ get_type_override(const void *this_ptr, const type_info *this_type, const char * ...@@ -2780,7 +2780,7 @@ get_type_override(const void *this_ptr, const type_info *this_type, const char *
PyObject *locals = PyEval_GetFrameLocals(); PyObject *locals = PyEval_GetFrameLocals();
# else # else
PyObject *locals = PyEval_GetLocals(); PyObject *locals = PyEval_GetLocals();
Py_INCREF(locals); Py_XINCREF(locals);
# endif # endif
if (locals != nullptr) { if (locals != nullptr) {
# if PY_VERSION_HEX >= 0x030b0000 # if PY_VERSION_HEX >= 0x030b0000
......
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