MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / ~DirIvCache

Method ~DirIvCache

libcppcryptfs/filename/dirivcache.cpp:69–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69DirIvCache::~DirIvCache()
70{
71
72 for (auto it = m_lru_list.begin(); it != m_lru_list.end(); ++it) {
73 DirIvCacheNode *node = *it;
74 delete node;
75 }
76
77 for (auto it = m_spare_node_list.begin(); it != m_spare_node_list.end(); ++it) {
78 DirIvCacheNode *node = *it;
79 delete node;
80 }
81
82 DeleteCriticalSection(&m_crit);
83}
84
85void DirIvCache::normalize_key(wstring& key)
86{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected