https://issues.apache.org/bugzilla/show_bug.cgi?id=56211

Christophe JAILLET <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Christophe JAILLET <[email protected]> ---
args is defined as static:
  lg 738:
     static char **args = NULL;


and memory is allocated only once:
  lg 767:
     if (!args) {
        /* Build the args array, only once since it won't change
         * for the lifetime of this parent process.
     [...]
        args = malloc((ap_server_conf->process->argc + 1) * sizeof (char*));


So there is no leak here, even if multiple child processes are created during
the life of the parent process.

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to