| 64 | } |
| 65 | |
| 66 | CryptThreadData *MountPointManager::get(const wchar_t *mountpoint) |
| 67 | { |
| 68 | wstring mpstr; |
| 69 | if (!find(mountpoint, mpstr)) { |
| 70 | return NULL; |
| 71 | } |
| 72 | auto it = m_tdatas.find(mpstr); |
| 73 | if (it != m_tdatas.end()) { |
| 74 | return it->second; |
| 75 | } else { |
| 76 | return NULL; |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | bool MountPointManager::destroy(const wchar_t *mountpoint) |
| 81 | { |
no test coverage detected