- Timestamp:
- Feb 15, 2007, 2:57:41 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kLdr/kLdrModMachO.c
r2974 r2975 2051 2051 } 2052 2052 if (Fixup.s.r_pcrel) 2053 Value += Fixup.s.r_address; 2054 2055 /* Calc the section number from the r_value and adjust the value. */ 2053 SymAddr += Fixup.s.r_address; 2054 Value = Fixup.s.r_value; 2055 SymAddr -= Value; /* (-> addend only) */ 2056 2057 /* Calc the section number from the r_value and adjust the value in case the section moved. */ 2056 2058 pSymSect = NULL; 2057 Value = Fixup.s.r_value;2058 2059 for (iSymSect = 0; iSymSect < pModMachO->cSections; iSymSect++) 2059 2060 {
Note:
See TracChangeset
for help on using the changeset viewer.