From 9b5303055359a670c7c0154bbd2995520eecde8f Mon Sep 17 00:00:00 2001 From: Francesco Tamagni Date: Wed, 12 Jun 2024 11:56:32 +0200 Subject: [PATCH] Make Mach-O size ut64 ##bin So it can represent the size of big dyld caches, which as of iOS 18.0 beta start to need 33 bits. --- libr/bin/format/mach0/mach0.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libr/bin/format/mach0/mach0.h b/libr/bin/format/mach0/mach0.h index c888e4c876435..a6dd9cca0ef96 100644 --- a/libr/bin/format/mach0/mach0.h +++ b/libr/bin/format/mach0/mach0.h @@ -157,7 +157,7 @@ struct MACH0_(obj_t) { bool libs_loaded; RPVector libs_cache; int nlibs; - int size; + ut64 size; ut64 baddr; ut64 entry; bool big_endian;