Changes with Apache 2.0.32-dev
+ *) Win32: Get apache -k restart -n apache2 working reliabily again.
+ [Bill Stoddard]
*) Remove all signals from the worker MPM's child process. Instead,
the parent uses the Pipe of Death for all communication with the
}
/* Child's initial stderr -> our main server error log (or, failing that, stderr) */
- if (ap_server_conf->error_log) {
+ if (ap_server_conf->error_log) { /* Is this check really necessary?*/
rv = apr_os_file_get(&hShareError, ap_server_conf->error_log);
if (rv == APR_SUCCESS && hShareError != INVALID_HANDLE_VALUE) {
if (DuplicateHandle(hCurrentProcess, hShareError,
CloseHandle(hNullOutput);
return -1;
}
- else {
- hShareError = GetStdHandle(STD_ERROR_HANDLE);
- }
+ }
+ else {
+ hShareError = GetStdHandle(STD_ERROR_HANDLE);
}
/* Create the child_exit_event */