diff options
| -rw-r--r-- | lib/hash.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/hash.c b/lib/hash.c index 987012a588..56e41fa826 100644 --- a/lib/hash.c +++ b/lib/hash.c @@ -36,6 +36,7 @@ hash_create_size (unsigned int size, unsigned int (*hash_key) (void *), hash->index = XCALLOC (MTYPE_HASH_INDEX, sizeof (struct hash_backet *) * size); hash->size = size; + hash->no_expand = 0; hash->hash_key = hash_key; hash->hash_cmp = hash_cmp; hash->count = 0; |
