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

Method ~LongFilenameCache

libcppcryptfs/filename/longfilenamecache.cpp:71–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69}
70
71LongFilenameCache::~LongFilenameCache()
72{
73
74 for (auto it = m_lru_list.begin(); it != m_lru_list.end(); ++it) {
75 LongFilenameCacheNode *node = *it;
76 delete node;
77 }
78
79 for (auto it = m_spare_node_list.begin(); it != m_spare_node_list.end(); ++it) {
80 LongFilenameCacheNode *node = *it;
81 delete node;
82 }
83
84 DeleteCriticalSection(&m_crit);
85}
86
87
88void LongFilenameCache::lock()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected