Fix crash caused by exception in Python gizmo target get handler

This commit is contained in:
Campbell Barton 2022-01-14 10:16:02 +11:00
parent 1bd0a87384
commit 7a0cf2c72f
Notes: blender-bot 2023-02-14 02:30:10 +01:00
Referenced by issue #88449: Blender LTS: Maintenance Task 2.93
Referenced by issue #88449, Blender LTS: Maintenance Task 2.93
Referenced by issue #93479, 3.0 Potential candidates for corrective releases
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ fail:
PyErr_Print();
PyErr_Clear();
Py_DECREF(ret);
Py_XDECREF(ret);
PyGILState_Release(gilstate);
}