* environ.cc (build_env): Clear envblock and return NULL on attempt to use env

var > 32K.
* spawn.cc (spawn_guts): Set E2BIG if build_env detects an error.
This commit is contained in:
Christopher Faylor
2005-09-16 19:58:12 +00:00
parent 541ea31352
commit e4d981b957
3 changed files with 17 additions and 1 deletions

View File

@@ -1034,6 +1034,12 @@ 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)
{
free (envblock);
envblock = NULL;
break;
}
new_tl += len + 1; /* Keep running total of block length so far */
/* See if we need to increase the size of the block. */
@@ -1066,7 +1072,6 @@ build_env (const char * const *envp, char *&envblock, int &envc,
of buffer */
}
debug_printf ("envp %p, envc %d", newenv, envc);
return newenv;
}