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

Method ~CaseCache

libcppcryptfs/filename/casecache.cpp:82–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80
81
82CaseCache::~CaseCache()
83{
84 for (auto it = m_lru_list.begin(); it != m_lru_list.end(); ++it) {
85 CaseCacheNode *node = *it;
86 delete node;
87 }
88
89 for (auto it = m_spare_node_list.begin(); it != m_spare_node_list.end(); ++it) {
90 CaseCacheNode *node = *it;
91 delete node;
92 }
93
94 DeleteCriticalSection(&m_crit);
95}
96
97void CaseCache::lock()
98{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected