@@ -207,14 +207,14 @@ mapTable->_objectFunctions.equal != _objectFunctions.equal) return false; for (uint32_t i = 0; i < _capacity; i++) { if (_buckets[i] != NULL && _buckets[i] != &deleted) { - void *object = + void *objectIter = [mapTable objectForKey: _buckets[i]->key]; - if (!_objectFunctions.equal(object, + if (!_objectFunctions.equal(objectIter, _buckets[i]->object)) return false; } }