diff options
| author | Rusty Wagner <rusty@vector35.com> | 2015-03-03 00:19:53 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2015-03-03 00:19:53 -0500 |
| commit | e1acceecfd1a9b30a1fa19599dce049b50dfaa36 (patch) | |
| tree | 98f8320c53f2217b0ee31284400de838cf72afee /binaryview.cpp | |
| parent | e931fbb18ed367745411592e3c408c1a04155a57 (diff) | |
Fix crashes on file close when analysis is still running
Diffstat (limited to 'binaryview.cpp')
| -rw-r--r-- | binaryview.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/binaryview.cpp b/binaryview.cpp index 6a218730..d274acb7 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -330,6 +330,12 @@ void BinaryView::UpdateAnalysis() } +void BinaryView::AbortAnalysis() +{ + BNAbortAnalysis(m_view); +} + + vector<Ref<Function>> BinaryView::GetAnalysisFunctionList() { size_t count; |
