Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/python/intern/bpy_app_handlers.c')
-rw-r--r--source/blender/python/intern/bpy_app_handlers.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/source/blender/python/intern/bpy_app_handlers.c b/source/blender/python/intern/bpy_app_handlers.c
index e6a8febbf29..2fbefe3be74 100644
--- a/source/blender/python/intern/bpy_app_handlers.c
+++ b/source/blender/python/intern/bpy_app_handlers.c
@@ -333,9 +333,6 @@ void bpy_app_generic_callback(struct Main *UNUSED(main),
if (num_pointers == 0) {
PyTuple_SET_ITEM(args_single, 0, Py_INCREF_RET(Py_None));
}
- else if (num_pointers == 1) {
- args_single = args_all;
- }
else {
PyTuple_SET_ITEM(args_single, 0, pyrna_struct_CreatePyObject(pointers[0]));
}
@@ -362,9 +359,7 @@ void bpy_app_generic_callback(struct Main *UNUSED(main),
}
Py_DECREF(args_all);
- if (args_single != args_all) {
- Py_DECREF(args_single);
- }
+ Py_DECREF(args_single);
PyGILState_Release(gilstate);
}