]> granicus.if.org Git - php/commitdiff
fix bug #68822 (request time is reset too early)
authorredfoxli <honghu069@163.com>
Tue, 13 Jan 2015 05:59:24 +0000 (13:59 +0800)
committerAntony Dovgal <tony2001@php.net>
Mon, 16 Feb 2015 12:10:09 +0000 (15:10 +0300)
this caused wrong time in the logs

sapi/fpm/fpm/fpm_request.c

index bf431a08d0366ef204b681bcb93ced888025760a..ed7e7a8890d2fcd7da4f94805fe0f1f59d604cb1 100644 (file)
@@ -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);
 }
 /* }}} */