| 19 | // CSecureEdit |
| 20 | |
| 21 | CSecureEdit::CSecureEdit() |
| 22 | { |
| 23 | m_pBuf = new LockZeroBuffer<WCHAR>(MAX_PASSWORD_LEN + 1, true); |
| 24 | m_strRealText = m_pBuf->m_buf; |
| 25 | |
| 26 | m_pBufOld = new LockZeroBuffer<WCHAR>(MAX_PASSWORD_LEN + 1, true); |
| 27 | m_strOldText = m_pBufOld->m_buf; |
| 28 | } |
| 29 | |
| 30 | CSecureEdit::~CSecureEdit() |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected