request end time for a failed request
(LogFormat contains %{end}t).
The request_config for mod_log_config might
not be initialized.
PR 54828.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1467765 13f79535-47bb-0310-9956-
ffa450edef68
{
log_request_state *state = (log_request_state *)ap_get_module_config(r->request_config,
&log_config_module);
+ if (!state) {
+ state = apr_pcalloc(r->pool, sizeof(log_request_state));
+ ap_set_module_config(r->request_config, &log_config_module, state);
+ }
if (state->request_end_time == 0) {
state->request_end_time = apr_time_now();
}