X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=hash.c;h=f04258956fe71ebe8fd18b0a8c6b8c49dd81aa4d;hp=a8e5236a8577c794cf9927eae8e880b2e5e432a7;hb=e3fcff4c503373a3f98676405783926e387f7139;hpb=c3e57678c8be193fc137854020f3a90887be97c9 diff --git a/hash.c b/hash.c index a8e5236..f042589 100644 --- a/hash.c +++ b/hash.c @@ -17,6 +17,8 @@ #include "mutt.h" +#include "lib/mem.h" + #define SOMEPRIME 149711 int hash_string (const unsigned char *s, int n) @@ -124,24 +126,23 @@ void *hash_find_hash (const HASH * table, int hash, const char *key) return NULL; } -void hash_delete_hash (HASH * table, int hash, const char *key, - const void *data, void (*destroy) (void *)) +void hash_delete_hash (HASH * table, int hash, const char *key, const void *data, + void (*destroy) (void *)) { struct hash_elem *ptr = table->table[hash]; struct hash_elem **last = &table->table[hash]; - for (; ptr; last = &ptr->next, ptr = ptr->next) { - /* if `data' is given, look for a matching ->data member. this is - * required for the case where we have multiple entries with the same - * key - */ - if ((data == ptr->data) || (!data && mutt_strcmp (ptr->key, key) == 0)) { + while (ptr) { + if ((data == ptr->data || !data) && mutt_strcmp (ptr->key, key) == 0) { *last = ptr->next; if (destroy) destroy (ptr->data); FREE (&ptr); - table->curnelem--; - return; + + ptr = *last; + } else { + last = &ptr->next; + ptr = ptr->next; } } }