diff --git a/CHANGES b/CHANGES index 0c723ddb10..bfae68757b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ Changes with Apache 2.0.40 + *) Fix infinite loop due to two HTTP_IN filters being present for + internally redirected requests. PR 10146. [Justin Erenkrantz] + *) Switch conn_rec->keepalive to an enumeration rather than a bitfield. [Justin Erenkrantz] diff --git a/modules/http/http_request.c b/modules/http/http_request.c index b3763d6e16..bd9c085956 100644 --- a/modules/http/http_request.c +++ b/modules/http/http_request.c @@ -383,8 +383,6 @@ static request_rec *internal_internal_redirect(const char *new_uri, f = f->next; } - ap_add_input_filter("HTTP_IN", NULL, new, new->connection); - apr_table_setn(new->subprocess_env, "REDIRECT_STATUS", apr_itoa(r->pool, r->status));