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:
authorCampbell Barton <ideasman42@gmail.com>2021-01-28 06:38:08 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-28 06:38:08 +0300
commit87d3f4aff3225104cbb8be41ac0339c6a1cd9a85 (patch)
tree2e4e4f83b7653465ec39a9135c8f932337298a85 /source/blender
parent198980693ba7b183f7d2a32a21b65338edfdeb10 (diff)
Fix T82675: Crash on exit when Blender is built as a Python module
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/python/intern/bpy_interface.c7
-rw-r--r--source/blender/windowmanager/CMakeLists.txt3
-rw-r--r--source/blender/windowmanager/intern/wm_init_exit.c8
3 files changed, 16 insertions, 2 deletions
diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c
index c54c78ae389..64e992bd76f 100644
--- a/source/blender/python/intern/bpy_interface.c
+++ b/source/blender/python/intern/bpy_interface.c
@@ -442,6 +442,13 @@ void BPY_python_start(bContext *C, int argc, const char **argv)
py_tstate = PyGILState_GetThisThreadState();
PyEval_ReleaseThread(py_tstate);
#endif
+
+#ifdef WITH_PYTHON_MODULE
+ /* Disable all add-ons at exit, not essential, it just avoids resource leaks, see T71362. */
+ BPY_run_string_eval(C,
+ (const char *[]){"atexit", "addon_utils", NULL},
+ "atexit.register(addon_utils.disable_all)");
+#endif
}
void BPY_python_end(void)
diff --git a/source/blender/windowmanager/CMakeLists.txt b/source/blender/windowmanager/CMakeLists.txt
index 6de36acb343..0f26ec50816 100644
--- a/source/blender/windowmanager/CMakeLists.txt
+++ b/source/blender/windowmanager/CMakeLists.txt
@@ -168,6 +168,9 @@ if(WITH_PYTHON)
../python
)
add_definitions(-DWITH_PYTHON)
+ if(WITH_PYTHON_MODULE)
+ add_definitions(-DWITH_PYTHON_MODULE)
+ endif()
endif()
if(WITH_BUILDINFO)
diff --git a/source/blender/windowmanager/intern/wm_init_exit.c b/source/blender/windowmanager/intern/wm_init_exit.c
index 608aa116239..918836041df 100644
--- a/source/blender/windowmanager/intern/wm_init_exit.c
+++ b/source/blender/windowmanager/intern/wm_init_exit.c
@@ -523,11 +523,15 @@ void WM_exit_ex(bContext *C, const bool do_python)
}
}
-#ifdef WITH_PYTHON
+#if defined(WITH_PYTHON) && !defined(WITH_PYTHON_MODULE)
/* Without this, we there isn't a good way to manage false-positive resource leaks
* where a #PyObject references memory allocated with guarded-alloc, T71362.
*
- * This allows add-ons to free resources when unregistered (which is good practice anyway). */
+ * This allows add-ons to free resources when unregistered (which is good practice anyway).
+ *
+ * Don't run this code when built as a Python module as this runs when Python is in the
+ * process of shutting down, where running a snippet like this will crash, see T82675.
+ * Instead use the `atexit` module, installed by #BPY_python_start */
BPY_run_string_eval(C, (const char *[]){"addon_utils", NULL}, "addon_utils.disable_all()");
#endif