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 f3e890a commit 6d2f7cdCopy full SHA for 6d2f7cd
examples/triage/baseaddress.cpp
@@ -288,12 +288,21 @@ void BaseAddressDetectionWidget::RebaseWithFullAnalysis()
288
289
uiContext->recreateViewFrames(fileContext);
290
fileContext->refreshDataViewCache();
291
- auto view = frame->getCurrentViewInterface();
+
292
+ auto newFrame = ViewFrame::viewFrameForWidget(this);
293
+ if (!newFrame)
294
+ return;
295
296
+ auto view = newFrame->getCurrentViewInterface();
297
if (!view)
298
return;
299
300
+ auto data = view->getData();
301
+ if (!data)
302
303
304
if (!view->navigate(address))
- m_view->Navigate(string("Linear:" + frame->getCurrentDataType().toStdString()), address);
305
+ data->Navigate("Linear:Mapped", address);
306
}
307
308
0 commit comments