diff options
| author | Mason Reed <mason@vector35.com> | 2025-12-04 13:04:25 -0500 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2025-12-04 13:20:01 -0500 |
| commit | b2c7e5c998e2536b56db4b0f55f88aaf49f6447f (patch) | |
| tree | c04eaa7e5412cdac78b8d2aa3c5bc6deec1f1a2c /view | |
| parent | 631f28123beca903701b3140031ee0b9d06511e5 (diff) | |
[DSC] Fix unhandled exception when opening secondary cache file with unbacked regions
Fixes https://github.com/Vector35/binaryninja-api/issues/7724
Diffstat (limited to 'view')
| -rw-r--r-- | view/sharedcache/core/MachO.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/sharedcache/core/MachO.cpp b/view/sharedcache/core/MachO.cpp index 1c1224db..29122dad 100644 --- a/view/sharedcache/core/MachO.cpp +++ b/view/sharedcache/core/MachO.cpp @@ -702,7 +702,7 @@ std::vector<CacheSymbol> SharedCacheMachOHeader::ReadExportSymbolTrie(VirtualMem } } } - catch (ReadException&) + catch (std::exception&) { LogError("Export trie is malformed. Could not load Exported symbol names."); } |
