diff options
author | Bill Stoddard <stoddard@apache.org> | 2000-10-22 15:53:27 +0000 |
---|---|---|
committer | Bill Stoddard <stoddard@apache.org> | 2000-10-22 15:53:27 +0000 |
commit | 458ab19e56030d50eb9f2d9f23125c79c776a7c0 (patch) | |
tree | f3faf39aee6a8b6f2440595de7f1b14ae6725d63 | |
parent | d915406c82ae1fb442790db15718923bf76b57f5 (diff) | |
download | httpd-458ab19e56030d50eb9f2d9f23125c79c776a7c0.tar.gz |
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
-rw-r--r-- | server/util_filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |