diff options
author | Justin Erenkrantz <jerenkrantz@apache.org> | 2002-01-02 06:29:08 +0100 |
---|---|---|
committer | Justin Erenkrantz <jerenkrantz@apache.org> | 2002-01-02 06:29:08 +0100 |
commit | df91efdc0f89ef63355868ac7cf0001ba0d7c0ce (patch) | |
tree | bed4e719432bf5e667b82e297dfa46c9ea2c846e | |
parent | Generalized the recent prep_walk_cache optimizations to allow other (diff) | |
download | apache2-df91efdc0f89ef63355868ac7cf0001ba0d7c0ce.tar.xz apache2-df91efdc0f89ef63355868ac7cf0001ba0d7c0ce.zip |
Remove a needless immortal bucket creation. We can just leave the
brigade as-is.
Suggested by: Cliff
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92698 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | server/core.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/server/core.c b/server/core.c index 39ea6552db..7c21d65c66 100644 --- a/server/core.c +++ b/server/core.c @@ -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) { |