debugger: fix crash on "recheck debugging helper" when not debugging

This commit is contained in:
hjk
2009-06-19 13:09:50 +02:00
parent a360c65e4d
commit 920880eb96
2 changed files with 2 additions and 1 deletions

View File

@@ -1533,7 +1533,7 @@ void DebuggerManager::showQtDumperLibraryWarning(const QString &details)
DebuggerStartMode DebuggerManager::startMode() const
{
return m_runControl->startMode();
return m_runControl ? m_runControl->startMode() : NoStartMode;
}
void DebuggerManager::reloadFullStack()