| 762 | } |
| 763 | |
| 764 | StackWalker::~StackWalker() |
| 765 | { |
| 766 | if (m_szSymPath != NULL) |
| 767 | free(m_szSymPath); |
| 768 | m_szSymPath = NULL; |
| 769 | if (this->m_sw != NULL) |
| 770 | delete this->m_sw; |
| 771 | this->m_sw = NULL; |
| 772 | } |
| 773 | |
| 774 | BOOL StackWalker::LoadModules() |
| 775 | { |
nothing calls this directly
no outgoing calls
no test coverage detected