This commit is contained in:
Kovid Goyal 2014-09-29 21:41:55 +05:30
parent b4cfdbbf32
commit 2fdf4de2f6

View File

@ -319,7 +319,7 @@ void initialize_interpreter(wchar_t *outr, wchar_t *errr,
flag = (int*)GetProcAddress(dll, "Py_NoUserSiteDirectory");
if (!flag) ExitProcess(_show_error(L"Failed to get user_site flag", L"", 1));
*flag = 1;
flag = (int*)GetProcAddress(dll, "Py_HashRandomizationFlag ");
flag = (int*)GetProcAddress(dll, "Py_HashRandomizationFlag");
if (!flag) ExitProcess(_show_error(L"Failed to get hash randomization flag", L"", 1));
*flag = 1;
flag = (int*)GetProcAddress(dll, "Py_VerboseFlag");