]> granicus.if.org Git - apache/commitdiff
Fix some brain dead code.
authorBill Stoddard <stoddard@apache.org>
Sun, 22 Oct 2000 15:53:27 +0000 (15:53 +0000)
committerBill Stoddard <stoddard@apache.org>
Sun, 22 Oct 2000 15:53:27 +0000 (15:53 +0000)
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

index c84e0981711dab1c6c777b2ac0455c789b7a32b1..b63b22d9a36c3004b95230d7435b56194487a059 100644 (file)
@@ -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,