From b2c7e5c998e2536b56db4b0f55f88aaf49f6447f Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Thu, 4 Dec 2025 13:04:25 -0500 Subject: [DSC] Fix unhandled exception when opening secondary cache file with unbacked regions Fixes https://github.com/Vector35/binaryninja-api/issues/7724 --- view/sharedcache/core/MachO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/sharedcache/core/MachO.cpp') 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 SharedCacheMachOHeader::ReadExportSymbolTrie(VirtualMem } } } - catch (ReadException&) + catch (std::exception&) { LogError("Export trie is malformed. Could not load Exported symbol names."); } -- cgit v1.3.1