|
From: <sv...@va...> - 2012-07-13 13:34:42
|
sewardj 2012-07-13 14:34:31 +0100 (Fri, 13 Jul 2012)
New Revision: 12739
Log:
Fix loading of large Mach-O thin binaries. Bug #289470.
(Scott Byer, sco...@ch...)
Modified files:
trunk/coregrind/m_ume/macho.c
Modified: trunk/coregrind/m_ume/macho.c (+1 -1)
===================================================================
--- trunk/coregrind/m_ume/macho.c 2012-07-13 14:21:11 +01:00 (rev 12738)
+++ trunk/coregrind/m_ume/macho.c 2012-07-13 14:34:31 +01:00 (rev 12739)
@@ -487,7 +487,7 @@
print("couldn't read load commands from executable\n");
return -1;
}
- headers_end = headers + size;
+ headers_end = headers + len;
// Map some segments into client memory:
|