]> granicus.if.org Git - apache/commitdiff
I forgot to catch all the other return calls in this function, so this
authorRyan Bloom <rbb@apache.org>
Thu, 2 Aug 2001 16:35:22 +0000 (16:35 +0000)
committerRyan Bloom <rbb@apache.org>
Thu, 2 Aug 2001 16:35:22 +0000 (16:35 +0000)
cleans up the warnings.  Thanks OtherBill for beating me up about this.

:-)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89876 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/mod_include.c

index fa822d99853bfc76f162e1165901d68a40c86574..f3251b36197ee7587ca6cfa46360258559267635 100644 (file)
@@ -2466,7 +2466,7 @@ static apr_status_t send_parsed_content(apr_bucket_brigade **bb,
                              (tmp_dptr != APR_BRIGADE_SENTINEL(*bb)));
                 }
 
-                return;
+                return APR_SUCCESS;
             }
 
             /* Can't destroy the tag buckets until I'm done processing
@@ -2609,6 +2609,7 @@ static apr_status_t send_parsed_content(apr_bucket_brigade **bb,
             ctx->bytes_parsed = 0;
         }
     }
+    return APR_SUCCESS;
 }
 
 /*****************************************************************