diff options
author | Yann Ylavic <ylavic@apache.org> | 2018-09-11 23:21:40 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2018-09-11 23:21:40 +0200 |
commit | 1b59b52292c991547568760fa664e709bbc871a4 (patch) | |
tree | 5df21189d592c3b3c339a0a7901a8c0ca0b10630 /modules | |
parent | * modules/ssl/ssl_engine_kernel.c (ssl_hook_Access_modern): Fail with (diff) | |
download | apache2-1b59b52292c991547568760fa664e709bbc871a4.tar.xz apache2-1b59b52292c991547568760fa664e709bbc871a4.zip |
Follow up to r1840265: really privatize ap_filter_{recycle,adopt_brigade}().
Move ap_filter_adopt_brigade()'s declaration to "server/core.h" (private).
For ap_filter_recycle(), make it static/internal to util_filter (renamed to
recycle_dead_filters() which better fits what it does). It's now also called
unconditionally from ap_filter_input_pending() which itself is always called
after the request processing and from MPM event (as input_pending hook).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1840611 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/http/http_request.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/http/http_request.c b/modules/http/http_request.c index 78171a849e..8f27e0f5f5 100644 --- a/modules/http/http_request.c +++ b/modules/http/http_request.c @@ -402,7 +402,6 @@ AP_DECLARE(void) ap_process_request_after_handler(request_rec *r) (void)ap_check_pipeline(c, bb, DEFAULT_LIMIT_BLANK_LINES); ap_release_brigade(c, bb); - ap_filter_recycle(c); if (c->cs) { if (c->aborted) { |