| 898 | } |
| 899 | |
| 900 | StackWalker::~StackWalker() |
| 901 | { |
| 902 | if (m_szSymPath != NULL) |
| 903 | free(m_szSymPath); |
| 904 | m_szSymPath = NULL; |
| 905 | if (this->m_sw != NULL) |
| 906 | delete this->m_sw; |
| 907 | this->m_sw = NULL; |
| 908 | } |
| 909 | |
| 910 | BOOL StackWalker::LoadModules() |
| 911 | { |
nothing calls this directly
no outgoing calls
no test coverage detected