Changeset 43303 in vbox for trunk/src/VBox/Runtime/r0drv/darwin/dbgkrnlinfo-r0drv-darwin.cpp
- Timestamp:
- Sep 11, 2012 11:55:10 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/VBox-4.1 merged: 78414
- Property svn:mergeinfo changed
-
trunk/src/VBox/Runtime/r0drv/darwin/dbgkrnlinfo-r0drv-darwin.cpp
r41052 r43303 395 395 extern "C" void OSMalloc(void); 396 396 extern "C" void OSlibkernInit(void); 397 extern "C" int osrelease;398 extern "C" int ostype;399 397 extern "C" void kdp_set_interface(void); 400 398 … … 743 741 RETURN_VERR_BAD_EXE_FORMAT; 744 742 745 if (pSeg->vmaddr != 0) 743 if ( pSeg->vmaddr != 0 744 || !strcmp(pSeg->segname, "__PAGEZERO")) 746 745 { 747 746 if (pSeg->vmaddr + RT_ALIGN_Z(pSeg->vmsize, RT_BIT_32(12)) < pSeg->vmaddr) … … 775 774 case S_MOD_TERM_FUNC_POINTERS: 776 775 case S_COALESCED: 776 case S_4BYTE_LITERALS: 777 777 if ( pSeg->filesize != 0 778 778 ? paSects[i].offset - pSeg->fileoff >= pSeg->filesize … … 792 792 case S_SYMBOL_STUBS: 793 793 case S_INTERPOSING: 794 case S_4BYTE_LITERALS:795 794 case S_8BYTE_LITERALS: 796 795 case S_16BYTE_LITERALS:
Note:
See TracChangeset
for help on using the changeset viewer.