| 205 | pSGSP = NULL; |
| 206 | } |
| 207 | ~StackWalkerInternal() |
| 208 | { |
| 209 | if (pSC != NULL) |
| 210 | pSC(m_hProcess); // SymCleanup |
| 211 | if (m_hDbhHelp != NULL) |
| 212 | FreeLibrary(m_hDbhHelp); |
| 213 | m_hDbhHelp = NULL; |
| 214 | m_parent = NULL; |
| 215 | if(m_szSymPath != NULL) |
| 216 | free(m_szSymPath); |
| 217 | m_szSymPath = NULL; |
| 218 | } |
| 219 | BOOL Init(LPCSTR szSymPath) |
| 220 | { |
| 221 | if (m_parent == NULL) |
nothing calls this directly
no outgoing calls
no test coverage detected