| 772 | } |
| 773 | |
| 774 | dictIterator *HashTableGetSafeIterator(dict *d) { |
| 775 | dictIterator *i = HashTableGetIterator(d); |
| 776 | |
| 777 | i->safe = 1; |
| 778 | return i; |
| 779 | } |
| 780 | |
| 781 | dictEntry *HashTableNext(dictIterator *iter) |
| 782 | { |
nothing calls this directly
no test coverage detected