summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2012-06-21 15:36:15 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2012-06-21 15:36:15 (GMT)
commit91a3468f459ab429992bf4409a8794a758a0314f (patch)
tree46d3bab327dfbad048a196b9ab941a685af9d455 /PC
parent7dae234e78ef14dae06fe7c5de6612cda26c116c (diff)
downloadcpython-91a3468f459ab429992bf4409a8794a758a0314f.zip
cpython-91a3468f459ab429992bf4409a8794a758a0314f.tar.gz
cpython-91a3468f459ab429992bf4409a8794a758a0314f.tar.bz2
Fix off-by-one error.
Diffstat (limited to 'PC')
-rw-r--r--PC/launcher.c2
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);