https://issues.apache.org/bugzilla/show_bug.cgi?id=47335
Ruediger Pluem <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO --- Comment #7 from Ruediger Pluem <[email protected]> 2009-06-10 01:18:18 PST --- Can you please check if the following patch fixes your issue? Index: threadproc/unix/proc.c =================================================================== --- threadproc/unix/proc.c (revision 783248 ( https://svn.apache.org/viewcvs.cgi?view=rev&rev=783248 )) +++ threadproc/unix/proc.c (working copy) @@ -78,7 +78,7 @@ if ((err != APR_NO_PIPE) && (err != APR_NO_FILE)) { if ((rv = apr_file_pipe_create_ex(&attr->parent_err, &attr->child_err, - err, attr->pool)) != APR_SUCCESS) + err, attr->pool)) == APR_SUCCESS) rv = apr_file_inherit_unset(attr->parent_err); if (rv != APR_SUCCESS) return rv; -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- 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]
