Skip to content

Commit 5515164

Browse files
author
nitrocaster
committed
Fix crash when loading report with MAP file (#21).
1 parent 434ff76 commit 5515164

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/CrashExplorer/ExpressModeDlg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ boost::shared_ptr<CBaseProcessor> CExpressModeDlg::GetModuleInfo(const CString&
430430
if (pMapProcessor == NULL)
431431
{
432432
pMapProcessor = new CMapProcessor();
433-
pBaseProcessor.reset(pMapProcessor);
433+
m_pMapProcessor.reset(pMapProcessor);
434434
}
435435
pBaseProcessor = m_pMapProcessor;
436436
pMapProcessor->LoadMapText(szMapPdbFile);

0 commit comments

Comments
 (0)