rbb 01/11/10 09:58:36
Modified: tables apr_hash.c
Log:
Remove a compiler warning.
Revision Changes Path
1.27 +1 -1 apr/tables/apr_hash.c
Index: apr_hash.c
===================================================================
RCS file: /home/cvs/apr/tables/apr_hash.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- apr_hash.c 2001/11/09 22:59:00 1.26
+++ apr_hash.c 2001/11/10 17:58:36 1.27
@@ -385,7 +385,7 @@
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;