]> granicus.if.org Git - apache/commitdiff
silence compiler warnings (these weren't really bugs)
authorCliff Woolley <jwoolley@apache.org>
Tue, 4 Sep 2001 02:13:58 +0000 (02:13 +0000)
committerCliff Woolley <jwoolley@apache.org>
Tue, 4 Sep 2001 02:13:58 +0000 (02:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90887 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/mod_include.c

index db8e24c32e2dadd2a290348848c252071b0daa81..be44b12f998737327348c68d84ed6338ad78194f 100644 (file)
@@ -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)) {