1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-05 19:55:47 +03:00

return returncode correctly

Reviewed By: xavierd

Differential Revision: D23434438

fbshipit-source-id: 813f987cf62e72c0b6704b31e6e9168006735b6f
This commit is contained in:
Zeyi (Rice) Fan
2020-08-31 16:03:36 -07:00
committed by Facebook GitHub Bot
parent 92b1ab7f6d
commit 29244950fe

View File

@@ -50,11 +50,12 @@ int locate_py_main(int argc, wchar_t **argv) {
python_dll = LoadLibraryExW(L"python3.dll", NULL, LOAD_LIBRARY_SEARCH_DEFAULT_DIRS);
int returncode = 0;
if (python_dll != NULL) {
pymain = (Py_Main) GetProcAddress(python_dll, "Py_Main");
if (pymain != NULL) {
(pymain)(argc, argv);
returncode = (pymain)(argc, argv);
} else {
fprintf(stderr, "error: %d unable to load Py_Main\n", GetLastError());
}
@@ -64,7 +65,7 @@ int locate_py_main(int argc, wchar_t **argv) {
fprintf(stderr, "error: %d unable to locate python3.dll\n", GetLastError());
return 1;
}
return 0;
return returncode;
}
int wmain() {