Fix HashMapIterate not resetting the iterator at the right place.

This commit is contained in:
Jordan Bancino 2022-07-25 22:55:22 -04:00
parent d9d1713f54
commit 90c4709823

View file

@ -243,6 +243,7 @@ HashMapIterate(HashMap * map, char **key, void **value)
}
}
map->iterator = 0;
return 0;
}