summaryrefslogtreecommitdiff
path: root/tables
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-11-10 17:58:36 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-11-10 17:58:36 +0000
commit5fc8545eb59db737d4c226d43a81948594cf4247 (patch)
treeb4a4444cbce591c58a20731d248000064b2c5ba7 /tables
parent4eef6f4c9ae4e1c9e665b81ea14d8c1a056210ec (diff)
downloadlibapr-5fc8545eb59db737d4c226d43a81948594cf4247.tar.gz
Remove a compiler warning.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62496 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'tables')
-rw-r--r--tables/apr_hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tables/apr_hash.c b/tables/apr_hash.c
index 25663dd50..8108b580f 100644
--- a/tables/apr_hash.c
+++ b/tables/apr_hash.c
@@ -385,7 +385,7 @@ APR_DECLARE(apr_hash_t *) apr_hash_merge(apr_pool_t *p,
const void *data)
{
apr_hash_t *res;
- apr_hash_entry_t *new_vals;
+ apr_hash_entry_t *new_vals = NULL;
apr_hash_entry_t *iter;
apr_hash_entry_t *ent;
int i,j,k;