summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--sapi/fpm/fpm/fpm_request.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 52d0e309b0..bfcd6b65a7 100644
--- a/NEWS
+++ b/NEWS
@@ -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)
diff --git a/sapi/fpm/fpm/fpm_request.c b/sapi/fpm/fpm/fpm_request.c
index 7b9e0f7679..28332d0a92 100644
--- a/sapi/fpm/fpm/fpm_request.c
+++ b/sapi/fpm/fpm/fpm_request.c
@@ -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);