[compiler-rt] [Sanitizers][Darwin] Correct iterating of MachO load commands (PR #130161)

Mariusz Borsa via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 7 15:18:10 PST 2025


================
@@ -334,9 +334,22 @@ static const load_command *NextCommand(const load_command *lc) {
   return (const load_command *)((const char *)lc + lc->cmdsize);
 }
 
-static void FindUUID(const load_command *first_lc, u8 *uuid_output) {
-  for (const load_command *lc = first_lc; lc->cmd != 0; lc = NextCommand(lc)) {
-    if (lc->cmd != LC_UUID) continue;
+#ifdef MH_MAGIC_64
+static const size_t header_size = sizeof(mach_header_64);
----------------
wrotki wrote:

Agreed.

https://github.com/llvm/llvm-project/pull/130161


More information about the llvm-commits mailing list