diff options
| author | Mason Reed <mason@vector35.com> | 2025-04-02 05:31:24 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-04-02 05:36:54 -0400 |
| commit | 96c40afe7296aba26ee7fb639517c7f16e137cc6 (patch) | |
| tree | b85fde78e1efe798cd46ab2a7a2b3de120f1caba /view/sharedcache/core/MachOProcessor.cpp | |
| parent | 04e70aeba41dcf5296637123a03bf584438976b9 (diff) | |
[SharedCache] Fix linear sweep picking up basically every function and removing it
Diffstat (limited to 'view/sharedcache/core/MachOProcessor.cpp')
| -rw-r--r-- | view/sharedcache/core/MachOProcessor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/sharedcache/core/MachOProcessor.cpp b/view/sharedcache/core/MachOProcessor.cpp index 893aa8fe..0d946680 100644 --- a/view/sharedcache/core/MachOProcessor.cpp +++ b/view/sharedcache/core/MachOProcessor.cpp @@ -35,7 +35,7 @@ void SharedCacheMachOProcessor::ApplyHeader(SharedCacheMachOHeader& header) auto targetPlatform = m_view->GetDefaultPlatform(); auto functions = header.ReadFunctionTable(*m_vm); for (const auto& func : functions) - m_view->AddFunctionForAnalysis(targetPlatform, func, true); + m_view->AddFunctionForAnalysis(targetPlatform, func, false); } auto typeLib = m_view->GetTypeLibrary(header.installName); |
