MCPcopy Create free account
hub / github.com/GregoryFaust/samblaster / disposeHashNode

Function disposeHashNode

sbhash.cpp:129–133  ·  view source on GitHub ↗

I don't think this is currently being called, as we always put the entire string of nodes on the freelist.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected