diff options
author | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2001-11-10 17:58:36 +0000 |
---|---|---|
committer | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2001-11-10 17:58:36 +0000 |
commit | 5fc8545eb59db737d4c226d43a81948594cf4247 (patch) | |
tree | b4a4444cbce591c58a20731d248000064b2c5ba7 | |
parent | 4eef6f4c9ae4e1c9e665b81ea14d8c1a056210ec (diff) | |
download | libapr-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
-rw-r--r-- | tables/apr_hash.c | 2 |
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; |