From 78b39bd631fc18fd5778090183776f5275005e21 Mon Sep 17 00:00:00 2001 From: Maxim Dounin Date: Fri, 12 Jul 2019 15:39:25 +0300 Subject: 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. --- src/http/modules/perl/ngx_http_perl_module.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/http/modules/perl/ngx_http_perl_module.h') diff --git a/src/http/modules/perl/ngx_http_perl_module.h b/src/http/modules/perl/ngx_http_perl_module.h index b67ce137c..da3a16235 100644 --- a/src/http/modules/perl/ngx_http_perl_module.h +++ b/src/http/modules/perl/ngx_http_perl_module.h @@ -34,6 +34,7 @@ typedef struct { unsigned done:1; unsigned error:1; unsigned variable:1; + unsigned header_sent:1; ngx_array_t *variables; /* array of ngx_http_perl_var_t */ -- cgit