1.9.8
This commit is contained in:
parent
3f45cfde83
commit
666a87cb52
|
@ -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)
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue