I don't think this is currently being called, as we always put the entire string of nodes on the freelist.
| 127 | |
| 128 | // I don't think this is currently being called, as we always put the entire string of nodes on the freelist. |
| 129 | void disposeHashNode(hashNode_t * node) |
| 130 | { |
| 131 | node->next = hashNodeFreeList; |
| 132 | hashNodeFreeList = node; |
| 133 | } |
| 134 | |
| 135 | void freeHashTableNodes() |
| 136 | { |
nothing calls this directly
no outgoing calls
no test coverage detected