slackbuilds_ponce/academic/scidavis/integration_with_python_crash_bug_320.patch
Fellype do Nascimento b285d0650e academic/scidavis: Patched to fix crashes.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2017-12-02 06:31:04 +07:00

20 lines
887 B
Diff

diff --git a/libscidavis/src/PythonScript.cpp b/libscidavis/src/PythonScript.cpp
index 27d4eec..a8b8ac2 100644
--- a/libscidavis/src/PythonScript.cpp
+++ b/libscidavis/src/PythonScript.cpp
@@ -43,6 +43,7 @@ PythonScript::PythonScript(PythonScripting *env, const QString &code, QObject *c
: Script(env, code, context, name)
{
PyCode = NULL;
+ PyGILState_STATE state = PyGILState_Ensure();
// Old: All scripts share a global namespace, and module top-level has its own nonstandard local namespace
modLocalDict = PyDict_New();
// A bit of a hack, but we need either IndexError or len() from __builtins__.
@@ -71,6 +72,7 @@ PythonScript::PythonScript(PythonScripting *env, const QString &code, QObject *c
else
PyErr_Print();
// "self" is unique to each script, so they can't all run in the __main__ namespace
+ PyGILState_Release(state);
setQObject(Context, "self");
}