X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-lib%2Fhash.c;h=eea6cd6e1da5ef259ac13bd1605d5d28ace711d1;hp=552038971d809c3a187cc89869aa7e0a9dc8dc16;hb=9233c1f8fefc6ecfe015682f532a7f1ff5038143;hpb=18ebc21bf1d29ed07fa007329879493493e18eb3;ds=sidebyside diff --git a/lib-lib/hash.c b/lib-lib/hash.c index 5520389..eea6cd6 100644 --- a/lib-lib/hash.c +++ b/lib-lib/hash.c @@ -94,11 +94,11 @@ int hash_insert(HASH *table, const char *key, void *data, int allow_dup) table->table[h] = ptr; table->curnelem++; } else { - struct hash_elem *tmp, *last; - int r; + struct hash_elem **e; + + for (e = &table->table[h]; *e; e = &(*e)->next) { + int r = m_strcmp((*e)->key, key); - for (tmp = table->table[h], last = NULL; tmp; last = tmp, tmp = tmp->next) { - r = m_strcmp(tmp->key, key); if (r == 0) { p_delete(&ptr); return (-1); @@ -106,12 +106,8 @@ int hash_insert(HASH *table, const char *key, void *data, int allow_dup) if (r > 0) break; } - if (last) { - last->next = ptr; - } else { - table->table[h] = ptr; - } - ptr->next = tmp; + ptr->next = *e; + *e = ptr; table->curnelem++; } return h;