Commit 4746f1fa authored by Ryan Bloom's avatar Ryan Bloom
Browse files

I forgot to catch all the other return calls in this function, so this

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
parent c1060484
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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;
}

/*****************************************************************