mirror of
https://github.com/php/php-src.git
synced 2026-04-27 10:16:41 +02:00
- Fixed bug #60659 (FPM does not clear auth_user on request accept)
This commit is contained in:
@@ -23,6 +23,7 @@ PHP NEWS
|
||||
- PHP-FPM SAPI:
|
||||
. Fixed bug #60629 (memory corruption when web server closed the fcgi fd).
|
||||
(fat)
|
||||
. Fixed bug #60659 (FPM does not clear auth_user on request accept). (fat)
|
||||
|
||||
- Improved Session extension:
|
||||
. Fixed bug #60640 (invalid return values). (Arpad)
|
||||
|
||||
@@ -92,6 +92,8 @@ void fpm_request_reading_headers() /* {{{ */
|
||||
proc->request_method[0] = '\0';
|
||||
proc->script_filename[0] = '\0';
|
||||
proc->query_string[0] = '\0';
|
||||
proc->query_string[0] = '\0';
|
||||
proc->auth_user[0] = '\0';
|
||||
proc->content_length = 0;
|
||||
fpm_scoreboard_proc_release(proc);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user