mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
- Fixed bug #60659 (FPM does not clear auth_user on request accept)
This commit is contained in:
parent
e6ca31057e
commit
b9fab77d13
2 changed files with 3 additions and 0 deletions
1
NEWS
1
NEWS
|
@ -22,6 +22,7 @@ PHP NEWS
|
||||||
- PHP-FPM SAPI:
|
- PHP-FPM SAPI:
|
||||||
. Fixed bug #60629 (memory corruption when web server closed the fcgi fd).
|
. Fixed bug #60629 (memory corruption when web server closed the fcgi fd).
|
||||||
(fat)
|
(fat)
|
||||||
|
. Fixed bug #60659 (FPM does not clear auth_user on request accept). (fat)
|
||||||
|
|
||||||
|
|
||||||
08 Dec 2011, PHP 5.3.9RC3
|
08 Dec 2011, PHP 5.3.9RC3
|
||||||
|
|
|
@ -92,6 +92,8 @@ void fpm_request_reading_headers() /* {{{ */
|
||||||
proc->request_method[0] = '\0';
|
proc->request_method[0] = '\0';
|
||||||
proc->script_filename[0] = '\0';
|
proc->script_filename[0] = '\0';
|
||||||
proc->query_string[0] = '\0';
|
proc->query_string[0] = '\0';
|
||||||
|
proc->query_string[0] = '\0';
|
||||||
|
proc->auth_user[0] = '\0';
|
||||||
proc->content_length = 0;
|
proc->content_length = 0;
|
||||||
fpm_scoreboard_proc_release(proc);
|
fpm_scoreboard_proc_release(proc);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue