niq says: Yes, when we add r584842 to the proposal.
rpluem says: Yes.
- * mpm_winnt: Fix null pointer dereference
- PR 42572
- http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/winnt/child.c?r1=505027&r2=563489
- +1: niq (this is clear enough to vote 'blind'), rpluem
-
* mod_proxy_http: Don't mangle proxied URLs
PR 42592
http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_http.c?r1=582655&r2=583803&pathrev=583803
CloseHandle(child_handles[i]);
/* Reset the scoreboard entry for the thread we just whacked */
score_idx = apr_hash_get(ht, &child_handles[i], sizeof(HANDLE));
- ap_update_child_status_from_indexes(0, *score_idx, SERVER_DEAD, NULL);
+ if (score_idx) {
+ ap_update_child_status_from_indexes(0, *score_idx,
+ SERVER_DEAD, NULL);
+ }
}
ap_log_error(APLOG_MARK,APLOG_NOTICE, APR_SUCCESS, ap_server_conf,
"Child %d: All worker threads have exited.", my_pid);