From: Martin v. Löwis Date: Thu, 21 Jun 2012 15:36:15 +0000 (+0200) Subject: Fix off-by-one error. X-Git-Tag: v3.3.0b1~168^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91a3468f459ab429992bf4409a8794a758a0314f;p=python Fix off-by-one error. --- diff --git a/PC/launcher.c b/PC/launcher.c index 5792d1b9cf..516d2356b5 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);