diff options
author | Stefan Fritsch <sf@apache.org> | 2011-12-18 18:25:40 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-12-18 18:25:40 +0100 |
commit | b9dacea0ea2e3cada1b96c0d85a919dcb6d64d4e (patch) | |
tree | 58bcaa1273d2102f3d367124af464cf69199852a /modules/cluster | |
parent | mod_firehose: Ensure directives are defined global only. (diff) | |
download | apache2-b9dacea0ea2e3cada1b96c0d85a919dcb6d64d4e.tar.xz apache2-b9dacea0ea2e3cada1b96c0d85a919dcb6d64d4e.zip |
remove some dead code
found by clang statical analyzer
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1220462 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cluster')
-rw-r--r-- | modules/cluster/mod_heartmonitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cluster/mod_heartmonitor.c b/modules/cluster/mod_heartmonitor.c index b72e196a89..527bc38e11 100644 --- a/modules/cluster/mod_heartmonitor.c +++ b/modules/cluster/mod_heartmonitor.c @@ -251,7 +251,7 @@ static apr_status_t hm_file_update_stat(hm_ctx_t *ctx, hm_server_t *s, apr_pool_ if (rv == APR_SUCCESS) { char *t; apr_table_t *hbt = apr_table_make(pool, 10); - apr_bucket_alloc_t *ba = apr_bucket_alloc_create(pool); + apr_bucket_alloc_t *ba; apr_bucket_brigade *bb; apr_bucket_brigade *tmpbb; |