diff options
author | Yann Ylavic <ylavic@apache.org> | 2014-06-03 13:47:11 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2014-06-03 13:47:11 +0200 |
commit | f1a9de3123910a4d850130a73bb81b12732c4c5c (patch) | |
tree | 22265aaf4b26e834115319b0a7a2d80c3acdfc9d | |
parent | ignore (diff) | |
download | apache2-f1a9de3123910a4d850130a73bb81b12732c4c5c.tar.xz apache2-f1a9de3123910a4d850130a73bb81b12732c4c5c.zip |
mod_proxy_http: avoid (unlikely) access to freed memory.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1599486 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/proxy/mod_proxy_http.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/proxy/mod_proxy_http.c b/modules/proxy/mod_proxy_http.c index 06a460953d..caf1cae99f 100644 --- a/modules/proxy/mod_proxy_http.c +++ b/modules/proxy/mod_proxy_http.c @@ -687,7 +687,6 @@ static apr_status_t proxy_buckets_lifetime_transform(request_rec *r, ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(00964) "Unhandled bucket type of type %s in" " proxy_buckets_lifetime_transform", e->type->name); - apr_bucket_delete(e); rv = APR_EGENERAL; } } |