summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorredfoxli <honghu069@163.com>2015-01-13 13:59:24 +0800
committerAntony Dovgal <tony2001@php.net>2015-02-16 15:10:09 +0300
commit3664345abac75aabedfbca061b0b7db5915de085 (patch)
tree0205248702f4cd1f03ab2a8fe35dfcf811f5ee61
parentf86aa349eb068b6865c6d423054afe7f781f979e (diff)
downloadphp-git-3664345abac75aabedfbca061b0b7db5915de085.tar.gz
fix bug #68822 (request time is reset too early)
this caused wrong time in the logs
-rw-r--r--sapi/fpm/fpm/fpm_request.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sapi/fpm/fpm/fpm_request.c b/sapi/fpm/fpm/fpm_request.c
index bf431a08d0..ed7e7a8890 100644
--- a/sapi/fpm/fpm/fpm_request.c
+++ b/sapi/fpm/fpm/fpm_request.c
@@ -221,8 +221,6 @@ void fpm_request_finished() /* {{{ */
proc->request_stage = FPM_REQUEST_FINISHED;
proc->tv = now;
- memset(&proc->accepted, 0, sizeof(proc->accepted));
- proc->accepted_epoch = 0;
fpm_scoreboard_proc_release(proc);
}
/* }}} */