Skip to content

Commit 576b51f

Browse files
committed
Fix a crash during python init
Threadstate is not available and causes abort to be called. Also change how we set python home, saw some init errors because environment variable wasn't picked up.
1 parent b3181df commit 576b51f

6 files changed

+12
-7
lines changed

project/BuildDependencies/scripts/0_package.target-win10-arm.list

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ openssl-1.1.1d-win10-arm-v141-20200105.7z
3434
pcre-8.43-win10-arm-v141-20200105.7z
3535
pillow-6.2.1-win10-arm-v142-20200803.7z
3636
pycryptodome-3.9.4-win10-arm-v142-20200803.7z
37-
python-3.8.5-win10-arm-v142-20200803.7z
37+
python-3.8.5-win10-arm-v142-20201205.7z
3838
rapidjson-1.1.0-20200105.7z
3939
spdlog-1.5.0-win10-arm-v141-20200320-2.7z
4040
sqlite-3300100-win10-arm-v141-20200105.7z

project/BuildDependencies/scripts/0_package.target-win10-win32.list

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ openssl-1.1.1d-win10-win32-v141-20200105.7z
3434
pcre-8.43-win10-win32-v141-20200105.7z
3535
pillow-6.2.1-win10-win32-v142-20200803.7z
3636
pycryptodome-3.9.4-win10-win32-v142-20200803.7z
37-
python-3.8.5-win10-win32-v142-20200803.7z
37+
python-3.8.5-win10-win32-v142-20201205.7z
3838
rapidjson-1.1.0-20200105.7z
3939
spdlog-1.5.0-win10-win32-v141-20200320-2.7z
4040
sqlite-3300100-win10-win32-v141-20200105.7z

project/BuildDependencies/scripts/0_package.target-win10-x64.list

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ openssl-1.1.1d-win10-x64-v141-20200105.7z
3434
pcre-8.43-win10-x64-v141-20200105.7z
3535
pillow-6.2.1-win10-x64-v142-20200803.7z
3636
pycryptodome-3.9.4-win10-x64-v142-20200803.7z
37-
python-3.8.5-win10-x64-v142-20200803.7z
37+
python-3.8.5-win10-x64-v142-20201205.7z
3838
rapidjson-1.1.0-20200105.7z
3939
spdlog-1.5.0-win10-x64-v141-20200320.7z
4040
sqlite-3300100-win10-x64-v141-20200105.7z

project/BuildDependencies/scripts/0_package.target-win32.list

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ openssl-1.1.1d-win10-win32-v141-20200105.7z
4141
pcre-8.43-win32-v141-20200105.7z
4242
pillow-6.2.1-win32-v142-20200803.7z
4343
pycryptodome-3.9.4-win32-v142-20200803.7z
44-
python-3.8.5-win32-v142-20200803.7z
44+
python-3.8.5-win32-v142-20201205.7z
4545
rapidjson-1.1.0-20200105.7z
4646
shairplay-ce80e00-win32-v141-20200105.7z
4747
spdlog-1.5.0-win32-v141-20200320-2.7z

project/BuildDependencies/scripts/0_package.target-x64.list

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ openssl-1.1.1d-x64-v141-20200105.7z
3838
pcre-8.43-x64-v141-20200105.7z
3939
pillow-6.2.1-x64-v142-20200803.7z
4040
pycryptodome-3.9.4-x64-v142-20200803.7z
41-
python-3.8.5-x64-v142-20200803.7z
41+
python-3.8.5-x64-v142-20201205.7z
4242
rapidjson-1.1.0-20200105.7z
4343
shairplay-ce80e00-x64-v141-20200105.7z
4444
spdlog-1.5.0-x64-v141-20200320.7z

xbmc/interfaces/python/XBPython.cpp

+7-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include "utils/JSONVariantWriter.h"
2929
#include "utils/Variant.h"
3030
#include "utils/log.h"
31+
#include "utils/CharsetConverter.h"
3132

3233
#ifdef TARGET_WINDOWS
3334
#include "platform/Environment.h"
@@ -501,10 +502,14 @@ bool XBPython::OnScriptInitialized(ILanguageInvoker* invoker)
501502
CEnvironment::putenv(buf);
502503
buf = "PYTHONOPTIMIZE=1";
503504
CEnvironment::putenv(buf);
504-
buf = "PYTHONHOME=" + CSpecialProtocol::TranslatePath("special://xbmc/system/python");
505-
CEnvironment::putenv(buf);
506505
buf = "OS=win32";
507506
CEnvironment::putenv(buf);
507+
508+
std::wstring pythonHomeW;
509+
CCharsetConverter::utf8ToW(CSpecialProtocol::TranslatePath("special://xbmc/system/python"),
510+
pythonHomeW);
511+
Py_SetPythonHome(pythonHomeW.c_str());
512+
508513
#ifdef _DEBUG
509514
if (CSysInfo::GetWindowsDeviceFamily() == CSysInfo::Xbox)
510515
CEnvironment::putenv("PYTHONCASEOK=1");

0 commit comments

Comments
 (0)