From 605f2bf96936efd6c5193d106a32fcf893c26b56 Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Sat, 18 Jun 2022 09:14:44 +0200 Subject: code format --- custom_mutators/gramatron/hashmap.c | 1 + 1 file changed, 1 insertion(+) (limited to 'custom_mutators/gramatron/hashmap.c') diff --git a/custom_mutators/gramatron/hashmap.c b/custom_mutators/gramatron/hashmap.c index 4f97e085..db4f9f98 100644 --- a/custom_mutators/gramatron/hashmap.c +++ b/custom_mutators/gramatron/hashmap.c @@ -171,6 +171,7 @@ unsigned long custom_crc32(const unsigned char *s, unsigned int len) { * Hashing function for a string */ unsigned int hashmap_hash_int(hashmap_map *m, char *keystring) { + unsigned int keystring_len = strlen(keystring); unsigned long key = custom_crc32((unsigned char *)(keystring), keystring_len); -- cgit 1.4.1