We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3496387 commit 3eb83fbCopy full SHA for 3eb83fb
examples/triage/analysisinfo.cpp
@@ -55,7 +55,10 @@ void AnalysisInfoWidget::timerExpired()
55
56
void AnalysisInfoWidget::updateDisplay()
57
{
58
- auto callingConvention = m_data->GetDefaultPlatform()->GetDefaultCallingConvention();
+ auto defaultPlatform = m_data->GetDefaultPlatform();
59
+ if (!defaultPlatform)
60
+ return;
61
+ auto callingConvention = defaultPlatform->GetDefaultCallingConvention();
62
auto gpRegister = callingConvention->GetGlobalPointerRegister();
63
std::string gpString, gpExtraString;
64
if (gpRegister == BN_INVALID_REGISTER)
0 commit comments