This commit is contained in:
DavidXanatos 2023-06-17 21:13:12 +02:00
parent 3f45cfde83
commit 666a87cb52
2 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- FixDirLinkErr (thanks lmou523) [#3038](https://github.com/sandboxie-plus/Sandboxie/pull/3038)
- Recovery window focus issue after file overwrite dialog [#3048}(https://github.com/sandboxie-plus/Sandboxie/issues/3048)
- Sandboxie Plus crashes with exception code c0000005 [#3024](https://github.com/sandboxie-plus/Sandboxie/issues/3024)

View File

@ -167,6 +167,8 @@ void CTraceTree::ItemSelection(const QItemSelection& selected, const QItemSelect
return;
CTraceEntryPtr pEntry = m_pTraceModel->GetEntry(selection.indexes().first());
if (pEntry.data() == NULL)
return;
CBoxedProcessPtr pProcess = theAPI->GetProcessById(pEntry->GetProcessId());
if(!pProcess.isNull())
m_pStackView->ShowStack(pEntry->GetStack(), pProcess);