Fixes #25844: Merged fix from 3.5.

This commit is contained in:
Vinay Sajip 2015-12-13 09:45:19 +00:00
commit 67dbd0d73c
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ static wchar_t * get_env(wchar_t * key)
if (result >= BUFSIZE) {
/* Large environment variable. Accept some leakage */
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");
}
GetEnvironmentVariableW(key, buf2, result);