mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Fixes #25844: Corrected =/== typo potentially leading to crash in launcher.
This commit is contained in:
commit
a1d6f39997
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue