Cleanup: replace Py_CLEAR with Py_DECREF in bpy.app modules
In this case, there is no benefit to using Py_CLEAR as the value will never be NULL and can't be used later on.
This commit is contained in:
@@ -79,8 +79,8 @@ static PyObject *make_alembic_info(void)
|
||||
SetStrItem("Unknown");
|
||||
#endif
|
||||
|
||||
if (PyErr_Occurred()) {
|
||||
Py_CLEAR(alembic_info);
|
||||
if (UNLIKELY(PyErr_Occurred())) {
|
||||
Py_DECREF(alembic_info);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user