]> granicus.if.org Git - apache/commitdiff
Remove a needless immortal bucket creation. We can just leave the
authorJustin Erenkrantz <jerenkrantz@apache.org>
Wed, 2 Jan 2002 05:29:08 +0000 (05:29 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Wed, 2 Jan 2002 05:29:08 +0000 (05:29 +0000)
brigade as-is.

Suggested by: Cliff

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

server/core.c

index 39ea6552db8544cc508f034da7850a4022c8eeb3..7c21d65c66143b63dc7187bf5ac184079ae97f09 100644 (file)
@@ -2960,8 +2960,6 @@ static int core_input_filter(ap_filter_t *f, apr_bucket_brigade *b, ap_input_mod
 
         if (APR_STATUS_IS_EAGAIN(rv)) {
             *readbytes = 0;
-            e = apr_bucket_immortal_create("", 0);
-            APR_BRIGADE_INSERT_TAIL(b, e);
             return APR_SUCCESS;
         }
         else if (rv != APR_SUCCESS) {