diff options
Diffstat (limited to 'PC')
-rw-r--r-- | PC/launcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/launcher.c b/PC/launcher.c index 5792d1b..516d235 100644 --- a/PC/launcher.c +++ b/PC/launcher.c @@ -63,7 +63,7 @@ static wchar_t * get_env(wchar_t * key) static wchar_t buf[256]; DWORD result = GetEnvironmentVariableW(key, buf, 256); - if (result > 256) { + if (result > 255) { /* Large environment variable. Accept some leakage */ wchar_t *buf2 = (wchar_t*)malloc(sizeof(wchar_t) * (result+1)); GetEnvironmentVariableW(key, buf2, result); |