diff options
| author | Mark Rowe <mrowe@bdash.net.nz> | 2025-02-17 11:04:35 -0800 |
|---|---|---|
| committer | kat <kat@vector35.com> | 2025-07-08 15:12:46 -0400 |
| commit | d7445e232501ba60fb780f2c18500c0b509fc97e (patch) | |
| tree | dfaff0a3c5f64786424a8ba0eb2ad4f53f9ebd5a /view/sharedcache | |
| parent | 9ff07a92f51ded6376174a0a023875256d6776bd (diff) | |
Parse sections containing Objective-C constants
This adds support for the `__objc_arrayobj`, `_objc_dictobj`,
`__objc_intobj`, `__objc_floatobj`, `__objc_doubleobj` and
`__objc_dateobj` sections that contain Objective-C constants. These are
emitted by Apple's versions of Clang for `const` literals, amongst other
things.
Diffstat (limited to 'view/sharedcache')
| -rw-r--r-- | view/sharedcache/core/SharedCacheController.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/sharedcache/core/SharedCacheController.cpp b/view/sharedcache/core/SharedCacheController.cpp index 5a5320c3..a9e0937c 100644 --- a/view/sharedcache/core/SharedCacheController.cpp +++ b/view/sharedcache/core/SharedCacheController.cpp @@ -233,7 +233,7 @@ bool SharedCacheController::ApplyImage(BinaryView& view, const CacheImage& image if (m_processObjC) objcProcessor.ProcessObjCData(); if (m_processCFStrings) - objcProcessor.ProcessCFStrings(); + objcProcessor.ProcessObjCLiterals(); } catch (std::exception& e) { |
