[map] Correct previous commit, if (...) was reversed.
This commit is contained in:
parent
ff4e8c7eac
commit
e30511a8de
|
@ -131,7 +131,7 @@ struct hb_hashmap_t
|
|||
}
|
||||
void fini_shallow ()
|
||||
{
|
||||
if (unlikely (!items)) {
|
||||
if (likely (items)) {
|
||||
unsigned size = mask + 1;
|
||||
for (unsigned i = 0; i < size; i++)
|
||||
items[i].~item_t ();
|
||||
|
|
Loading…
Reference in New Issue