summaryrefslogtreecommitdiff
path: root/view
diff options
context:
space:
mode:
Diffstat (limited to 'view')
-rw-r--r--view/macho/machoview.cpp2
-rw-r--r--view/sharedcache/core/SharedCacheController.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/view/macho/machoview.cpp b/view/macho/machoview.cpp
index e4be6c7b..9244a9c9 100644
--- a/view/macho/machoview.cpp
+++ b/view/macho/machoview.cpp
@@ -2369,7 +2369,7 @@ bool MachoView::InitializeHeader(MachOHeader& header, bool isMainHeader, uint64_
if (parseCFStrings)
{
try {
- m_objcProcessor->ProcessCFStrings();
+ m_objcProcessor->ProcessObjCLiterals();
}
catch (std::exception& ex)
{
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)
{