From e094051e4f785f3a464440b513ae732d9e552a00 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Sun, 11 Feb 2001 19:10:42 +0000 Subject: [PATCH] Fix a compile warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88092 13f79535-47bb-0310-9956-ffa450edef68 --- server/util_filter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/server/util_filter.c b/server/util_filter.c index f3447626042..02343246e3d 100644 --- a/server/util_filter.c +++ b/server/util_filter.c @@ -159,6 +159,7 @@ static ap_filter_t *add_any_filter(const char *name, void *ctx, ap_log_error(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, 0, NULL, "an unknown filter was not added: %s", name); + return NULL; } AP_DECLARE(ap_filter_t *) ap_add_input_filter(const char *name, void *ctx, -- 2.47.2