Commit 91a3468f authored by Martin v. Löwis's avatar Martin v. Löwis

Fix off-by-one error.

parent 7dae234e
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment