| 341 | } |
| 342 | |
| 343 | void hashTypeReleaseIterator(hashTypeIterator *hi) { |
| 344 | if (hi->encoding == OBJ_ENCODING_HT) |
| 345 | dictReleaseIterator(hi->di); |
| 346 | zfree(hi); |
| 347 | } |
| 348 | |
| 349 | /* Move to the next entry in the hash. Return C_OK when the next entry |
| 350 | * could be found and C_ERR when the iterator reaches the end. */ |
no test coverage detected