summaryrefslogtreecommitdiff
path: root/view/sharedcache/workflow/SharedCacheWorkflow.cpp
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-04-02 14:42:55 -0400
committerMason Reed <mason@vector35.com>2025-04-02 14:42:55 -0400
commit003072f957498a11b7fdcbb56892af0c281c85b3 (patch)
treef7ded5b8b876e717b20ed4402e6582b6e7aeb7d2 /view/sharedcache/workflow/SharedCacheWorkflow.cpp
parent49ea03c417168a707125169b77e6ff1c7ebbe097 (diff)
[SharedCache] Misc fixes and comments
Diffstat (limited to 'view/sharedcache/workflow/SharedCacheWorkflow.cpp')
-rw-r--r--view/sharedcache/workflow/SharedCacheWorkflow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/sharedcache/workflow/SharedCacheWorkflow.cpp b/view/sharedcache/workflow/SharedCacheWorkflow.cpp
index 8046ed22..7dde4089 100644
--- a/view/sharedcache/workflow/SharedCacheWorkflow.cpp
+++ b/view/sharedcache/workflow/SharedCacheWorkflow.cpp
@@ -126,7 +126,7 @@ void AnalyzeStubFunction(Ref<Function> func, Ref<MediumLevelILFunction> mlil, Sh
// We allow the user to automatically load the directly referenced objc images as having the calls inlined is extremely useful for objc.
auto loadTargetImage = [&](uint64_t imageAddr) {
- auto image = controller.GetImageContaining(imageAddr);
+ const auto image = controller.GetImageContaining(imageAddr);
if (!image.has_value())
return false;
return controller.ApplyImage(*view, *image);