diff --git a/STATUS b/STATUS index b0e9ea742c..75725ea6c6 100644 --- a/STATUS +++ b/STATUS @@ -1,5 +1,5 @@ APACHE 2.0 STATUS: -*-text-*- -Last modified at [$Date: 2001/12/27 06:08:12 $] +Last modified at [$Date: 2001/12/27 19:53:37 $] Release: @@ -193,11 +193,6 @@ RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP: server-info or server-status. This proposed change would _not_ depricate Alias. - * daedalus: mod_cgid and suexec have a problem co-existing. suexec - sees a null command string sometimes. The problem happens when - you access bugs.apache.org, then click on the "search the bug db" - button. - * Win32: Rotatelogs sometimes is not terminated when Apache goes down hard. FirstBill was looking at possibly tracking the child's-child processes in the parent process. diff --git a/os/unix/unixd.c b/os/unix/unixd.c index 673a1cfd9b..bdd760b9a9 100644 --- a/os/unix/unixd.c +++ b/os/unix/unixd.c @@ -345,7 +345,8 @@ static apr_status_t ap_unix_create_privileged_process( i++; } } - newargs = apr_palloc(p, sizeof(char *) * (i + 4)); + /* allocate space for 4 new args, the input args, and a null terminator */ + newargs = apr_palloc(p, sizeof(char *) * (i + 5)); newprogname = SUEXEC_BIN; newargs[0] = SUEXEC_BIN; newargs[1] = execuser;