aboutsummaryrefslogtreecommitdiff
path: root/src/http/modules/perl/ngx_http_perl_module.c
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2019-07-12 15:39:25 +0300
committerMaxim Dounin <mdounin@mdounin.ru>2019-07-12 15:39:25 +0300
commit78b39bd631fc18fd5778090183776f5275005e21 (patch)
tree8e45484babb4cedc437a129a6a7285fc413c68ab /src/http/modules/perl/ngx_http_perl_module.c
parent12d6b3b4a1d024bd8098e20b43b0b7020e5286e6 (diff)
downloadnginx-78b39bd631fc18fd5778090183776f5275005e21.tar.gz
nginx-78b39bd631fc18fd5778090183776f5275005e21.zip
Perl: avoid returning 500 if header was already sent.
Returning NGX_HTTP_INTERNAL_SERVER_ERROR if a perl code died after sending header will lead to a "header already sent" alert. To avoid it, we now check if header was already sent, and return NGX_ERROR instead if it was.
Diffstat (limited to 'src/http/modules/perl/ngx_http_perl_module.c')
-rw-r--r--src/http/modules/perl/ngx_http_perl_module.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/http/modules/perl/ngx_http_perl_module.c b/src/http/modules/perl/ngx_http_perl_module.c
index 81b2526ad..dc2125935 100644
--- a/src/http/modules/perl/ngx_http_perl_module.c
+++ b/src/http/modules/perl/ngx_http_perl_module.c
@@ -780,6 +780,10 @@ ngx_http_perl_call_handler(pTHX_ ngx_http_request_t *r,
ctx->redirect_uri.len = 0;
+ if (ctx->header_sent) {
+ return NGX_ERROR;
+ }
+
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}