diff options
Diffstat (limited to 'tables/apr_hash.c')
-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 f6b6fad31..b0385fb18 100644 --- a/tables/apr_hash.c +++ b/tables/apr_hash.c @@ -216,7 +216,7 @@ static apr_hash_entry_t **find_entry(apr_hash_t *ht, int i; if (klen == APR_HASH_KEY_STRING) - klen = strlen(key) + 1; + klen = strlen(key); /* * This is Daniel J. Bernstein's popular `times 33' hash function |