| 45 | } |
| 46 | |
| 47 | CryptFile::CryptFile() |
| 48 | { |
| 49 | m_handle = INVALID_HANDLE_VALUE; |
| 50 | m_is_empty = false; |
| 51 | m_con = NULL; |
| 52 | m_pkdc = nullptr; |
| 53 | m_real_file_size = (long long)-1; |
| 54 | memset(&m_header, 0, sizeof(m_header)); |
| 55 | } |
| 56 | |
| 57 | |
| 58 | CryptFile::~CryptFile() |
nothing calls this directly
no outgoing calls
no test coverage detected