[nginx] Fixed post_action to not trigger "header already sent" a...

Maxim Dounin mdounin at mdounin.ru
Tue Apr 7 13:04:23 UTC 2015


details:   http://hg.nginx.org/nginx/rev/8e56f649fd0d
branches:  stable-1.6
changeset: 6079:8e56f649fd0d
user:      Maxim Dounin <mdounin at mdounin.ru>
date:      Fri Nov 28 16:57:50 2014 +0300
description:
Fixed post_action to not trigger "header already sent" alert.

The alert was introduced in 03ff14058272 (1.5.4), and was triggered on each
post_action invocation.

There is no real need to call header filters in case of post_action,
so return NGX_OK from ngx_http_send_header() if r->post_action is set.

diffstat:

 src/http/ngx_http_core_module.c |  4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diffs (14 lines):

diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c
--- a/src/http/ngx_http_core_module.c
+++ b/src/http/ngx_http_core_module.c
@@ -1935,6 +1935,10 @@ ngx_http_send_response(ngx_http_request_
 ngx_int_t
 ngx_http_send_header(ngx_http_request_t *r)
 {
+    if (r->post_action) {
+        return NGX_OK;
+    }
+
     if (r->header_sent) {
         ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,
                       "header already sent");



More information about the nginx-devel mailing list