diff --git a/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp b/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp index c81142d4d9..4e2fc13cff 100644 --- a/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp @@ -2560,8 +2560,8 @@ VariablesView::_RequestNodeValue(ModelNode* node) containerLocker.Unlock(); // request resolution of the value - fListener->ValueNodeValueRequested(fStackFrame->GetCpuState(), container, - valueNode); + fListener->ValueNodeValueRequested(fStackFrame != NULL + ? fStackFrame->GetCpuState() : NULL, container, valueNode); }