Fixes #25844: Corrected =/== typo potentially leading to crash in launcher.
This commit is contained in:
parent
0ac3a0cd79
commit
abeb6479bd
|
@ -114,7 +114,7 @@ static wchar_t * get_env(wchar_t * key)
|
||||||
if (result >= BUFSIZE) {
|
if (result >= BUFSIZE) {
|
||||||
/* Large environment variable. Accept some leakage */
|
/* Large environment variable. Accept some leakage */
|
||||||
wchar_t *buf2 = (wchar_t*)malloc(sizeof(wchar_t) * (result+1));
|
wchar_t *buf2 = (wchar_t*)malloc(sizeof(wchar_t) * (result+1));
|
||||||
if (buf2 = NULL) {
|
if (buf2 == NULL) {
|
||||||
error(RC_NO_MEMORY, L"Could not allocate environment buffer");
|
error(RC_NO_MEMORY, L"Could not allocate environment buffer");
|
||||||
}
|
}
|
||||||
GetEnvironmentVariableW(key, buf2, result);
|
GetEnvironmentVariableW(key, buf2, result);
|
||||||
|
@ -1219,7 +1219,7 @@ path '%s'", command);
|
||||||
* is no version specification.
|
* is no version specification.
|
||||||
*/
|
*/
|
||||||
debug(L"searching PATH for python executable\n");
|
debug(L"searching PATH for python executable\n");
|
||||||
cmd = find_on_path(L"python");
|
cmd = find_on_path(PYTHON_EXECUTABLE);
|
||||||
debug(L"Python on path: %s\n", cmd ? cmd->value : L"<not found>");
|
debug(L"Python on path: %s\n", cmd ? cmd->value : L"<not found>");
|
||||||
if (cmd) {
|
if (cmd) {
|
||||||
debug(L"located python on PATH: %s\n", cmd->value);
|
debug(L"located python on PATH: %s\n", cmd->value);
|
||||||
|
|
Loading…
Reference in New Issue