From: Cliff Woolley Date: Tue, 4 Sep 2001 02:13:58 +0000 (+0000) Subject: silence compiler warnings (these weren't really bugs) X-Git-Tag: 2.0.26~331 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a86388e61a8edac1a7c22201e1069b1d061e0c32;p=apache 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 --- 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)) {