| 812 | } |
| 813 | |
| 814 | void HashTableReleaseIterator(dictIterator *iter) |
| 815 | { |
| 816 | HashTableResetIterator(iter); |
| 817 | free(iter); |
| 818 | } |
| 819 | |
| 820 | /* Reallocate the dictEntry allocations in a bucket using the provided |
| 821 | * allocation function in order to defrag them. */ |
no test coverage detected