From c20bd71b5ec5b45be88fd1777a449e62786f5d4f Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Sun, 22 Oct 2000 15:53:27 +0000 Subject: [PATCH] Fix some brain dead code. Submitted by: Greg Stein Reviewed by: Bill Stoddard git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86706 13f79535-47bb-0310-9956-ffa450edef68 --- server/util_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/util_filter.c b/server/util_filter.c index c84e098171..b63b22d9a3 100644 --- a/server/util_filter.c +++ b/server/util_filter.c @@ -177,7 +177,7 @@ AP_DECLARE(void) ap_remove_output_filter(ap_filter_t *f) return; } } - curr->next = f->next ? f->next : NULL; + curr->next = f->next; } AP_DECLARE(void) ap_add_output_filter(const char *name, void *ctx, -- 2.50.1