-
Notifications
You must be signed in to change notification settings - Fork 269
Labels
Effort: TrivialIssues require < 1 day of workIssues require < 1 day of workFile Format: SharedCacheIssue with the dyld_shared_cache pluginIssue with the dyld_shared_cache pluginImpact: MediumIssue is impactful with a bad, or no, workaroundIssue is impactful with a bad, or no, workaround
Milestone
Description
- Open file
light ace detects greatly - Observe crash
This seems to be because the file contains valid image information with regions, we should first fix the crash:
diff --git a/view/sharedcache/core/MachO.cpp b/view/sharedcache/core/MachO.cpp
--- a/view/sharedcache/core/MachO.cpp
+++ b/view/sharedcache/core/MachO.cpp
@@ -703,5 +703,5 @@
}
}
- catch (ReadException&)
+ catch (std::exception&)
{
LogError("Export trie is malformed. Could not load Exported symbol names.");
Then possibly have a fast-fail for when regions are missing for images.
Metadata
Metadata
Assignees
Labels
Effort: TrivialIssues require < 1 day of workIssues require < 1 day of workFile Format: SharedCacheIssue with the dyld_shared_cache pluginIssue with the dyld_shared_cache pluginImpact: MediumIssue is impactful with a bad, or no, workaroundIssue is impactful with a bad, or no, workaround