X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Fsolid.c;h=704fb41467e5375030f48d78123c12c154dba38f;hp=ab00b0fa74539987a6fa72a88e3a675223ef37c7;hb=f8223526610a6ed9410ed6ce2e704ef15ab8cade;hpb=3de1ec66f778edda19865482d685bc6f4e17faf7 diff --git a/src/solid.c b/src/solid.c index ab00b0fa..704fb414 100644 --- a/src/solid.c +++ b/src/solid.c @@ -136,13 +136,12 @@ dentry_fill_in_solid_sort_names(struct wim_dentry *dentry, void *_blob_table) const struct wim_inode *inode = dentry->d_inode; const u8 *hash; struct hlist_head *head; - struct hlist_node *cur; struct blob_descriptor *blob; hash = inode_get_hash_of_unnamed_data_stream(inode); head = &blob_table->table[load_size_t_unaligned(hash) % blob_table->capacity]; - hlist_for_each_entry(blob, cur, head, hash_list_2) { + hlist_for_each_entry(blob, head, hash_list_2) { if (hashes_equal(hash, blob->hash)) { blob_set_solid_sort_name_from_inode(blob, inode); break;