mirror of
https://github.com/nginx/nginx.git
synced 2025-02-25 18:55:26 -06:00
merge r2954:
fix segfault if there is error_page 401, proxy_intercept_errors is on and backend does not return "WWW-Authenticate" header
This commit is contained in:
parent
942ccf676e
commit
d0f46cb6bb
@ -1573,8 +1573,9 @@ ngx_http_upstream_intercept_errors(ngx_http_request_t *r,
|
|||||||
|
|
||||||
if (err_page[i].status == status) {
|
if (err_page[i].status == status) {
|
||||||
|
|
||||||
if (status == NGX_HTTP_UNAUTHORIZED) {
|
if (status == NGX_HTTP_UNAUTHORIZED
|
||||||
|
&& u->headers_in.www_authenticate)
|
||||||
|
{
|
||||||
h = ngx_list_push(&r->headers_out.headers);
|
h = ngx_list_push(&r->headers_out.headers);
|
||||||
|
|
||||||
if (h == NULL) {
|
if (h == NULL) {
|
||||||
|
Loading…
Reference in New Issue
Block a user