]> git.ipfire.org Git - thirdparty/git.git/blobdiff - hashmap.c
hashmap_get{,_from_hash} return "struct hashmap_entry *"
[thirdparty/git.git] / hashmap.c
index 22bc7c5b3bd6395847ecaa0bd086a832d59c9117..5662bee10a3189291617cda6d1b3987fe27d4055 100644 (file)
--- a/hashmap.c
+++ b/hashmap.c
@@ -186,8 +186,9 @@ void hashmap_free(struct hashmap *map, int free_entries)
        memset(map, 0, sizeof(*map));
 }
 
-void *hashmap_get(const struct hashmap *map, const struct hashmap_entry *key,
-               const void *keydata)
+struct hashmap_entry *hashmap_get(const struct hashmap *map,
+                               const struct hashmap_entry *key,
+                               const void *keydata)
 {
        return *find_entry_ptr(map, key, keydata);
 }
@@ -298,7 +299,7 @@ const void *memintern(const void *data, size_t len)
        /* lookup interned string in pool */
        hashmap_entry_init(&key.ent, memhash(data, len));
        key.len = len;
-       e = hashmap_get(&map, &key.ent, data);
+       e = hashmap_get_entry(&map, &key, data, struct pool_entry, ent);
        if (!e) {
                /* not found: create it */
                FLEX_ALLOC_MEM(e, data, data, len);