Skip to content

Commit

Permalink
Fix crash when loading report with MAP file (#21).
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Dec 17, 2016
1 parent 434ff76 commit 5515164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/CrashExplorer/ExpressModeDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ boost::shared_ptr<CBaseProcessor> CExpressModeDlg::GetModuleInfo(const CString&
if (pMapProcessor == NULL)
{
pMapProcessor = new CMapProcessor();
pBaseProcessor.reset(pMapProcessor);
m_pMapProcessor.reset(pMapProcessor);
}
pBaseProcessor = m_pMapProcessor;
pMapProcessor->LoadMapText(szMapPdbFile);
Expand Down

0 comments on commit 5515164

Please sign in to comment.