- Fixed bug #60659 (FPM does not clear auth_user on request accept)

This commit is contained in:
Jérôme Loyet 2012-01-04 21:18:26 +00:00
parent e6ca31057e
commit b9fab77d13
2 changed files with 3 additions and 0 deletions

1
NEWS
View file

@ -22,6 +22,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)
08 Dec 2011, PHP 5.3.9RC3

View file

@ -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);