| 79 | } |
| 80 | |
| 81 | static void get_deletable_files(CryptContext *con, vector<wstring>& files) |
| 82 | { |
| 83 | |
| 84 | files.clear(); |
| 85 | |
| 86 | assert(con); |
| 87 | |
| 88 | if (!con) |
| 89 | return; |
| 90 | |
| 91 | if (con->GetConfig()->DirIV()) { |
| 92 | files.push_back(DIR_IV_NAME); |
| 93 | } |
| 94 | |
| 95 | if (con->m_delete_spurrious_files && !con->GetConfig()->m_PlaintextNames |
| 96 | && !con->GetConfig()->m_reverse) { |
| 97 | files.push_back(L"desktop.ini"); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | bool CryptContext::FinalInitBeforeMounting(bool use_key_cache) |
| 102 | { |
no test coverage detected