summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/environ.cc
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/environ.cc')
-rw-r--r--winsup/cygwin/environ.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc
index b73c710a4..b7ca700ee 100644
--- a/winsup/cygwin/environ.cc
+++ b/winsup/cygwin/environ.cc
@@ -1034,11 +1034,11 @@ build_env (const char * const *envp, char *&envblock, int &envc,
p = *srcp; /* Don't worry about it */
len = strlen (p);
- if (len >= 32 * 1024 * 1024)
+ if (len >= 32 * 1024)
{
free (envblock);
envblock = NULL;
- break;
+ goto out;
}
new_tl += len + 1; /* Keep running total of block length so far */
@@ -1072,6 +1072,7 @@ build_env (const char * const *envp, char *&envblock, int &envc,
of buffer */
}
+out:
debug_printf ("envp %p, envc %d", newenv, envc);
return newenv;
}