Changeset 90
- Timestamp:
- Sep 7, 2016, 3:33:46 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kLdr/kLdrModMachO.c
r88 r90 1375 1375 1376 1376 cb = pDstSeg[1].RVA - pDstSeg->RVA; 1377 pDstSeg->cbMapped = (KSIZE)cb == cb ? cb : KSIZE_MAX;1377 pDstSeg->cbMapped = (KSIZE)cb == cb ? (KSIZE)cb : KSIZE_MAX; 1378 1378 } 1379 1379 … … 1440 1440 pDstSeg->cbFile = -1; 1441 1441 pDstSeg->RVA = pModMachO->GotRVA; 1442 pDstSeg->cbMapped = KLDR_ALIGN_ADDR(cbGot + cbJmpStubs, pDstSeg->Alignment);1442 pDstSeg->cbMapped = (KSIZE)KLDR_ALIGN_ADDR(cbGot + cbJmpStubs, pDstSeg->Alignment); 1443 1443 pDstSeg->MapAddress = 0; 1444 1444
Note:
See TracChangeset
for help on using the changeset viewer.