From a86388e61a8edac1a7c22201e1069b1d061e0c32 Mon Sep 17 00:00:00 2001 From: Cliff Woolley Date: Tue, 4 Sep 2001 02:13:58 +0000 Subject: [PATCH] silence compiler warnings (these weren't really bugs) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90887 13f79535-47bb-0310-9956-ffa450edef68 --- modules/filters/mod_include.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index db8e24c32e..be44b12f99 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -223,7 +223,7 @@ static apr_bucket *find_start_sequence(apr_bucket *dptr, include_ctx_t *ctx, *do_cleanup = 0; do { - apr_status_t rv; + apr_status_t rv = 0; int read_done = 0; if (APR_BUCKET_IS_EOS(dptr)) { @@ -340,7 +340,7 @@ static apr_bucket *find_end_sequence(apr_bucket *dptr, include_ctx_t *ctx, const char *str = ENDING_SEQUENCE; do { - apr_status_t rv; + apr_status_t rv = 0; int read_done = 0; if (APR_BUCKET_IS_EOS(dptr)) { -- 2.50.1