MCPcopy Create free account
hub / github.com/Tripwire/tripwire-open-source / Destroy

Method Destroy

src/cryptlib/queue.cpp:126–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124}
125
126void ByteQueue::Destroy()
127{
128 ByteQueueNode *next;
129
130 for (ByteQueueNode *current=head; current; current=next)
131 {
132 next=current->next;
133 delete current;
134 }
135}
136
137void ByteQueue::CopyTo(BufferedTransformation &target) const
138{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected