Changeset 4223 in vbox
- Timestamp:
- Aug 19, 2007 1:02:11 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23717
- Location:
- trunk/src/VBox/Runtime/r0drv/nt
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/memobj-r0drv-nt.cpp
r4222 r4223 152 152 case RTR0MEMOBJTYPE_MAPPING: 153 153 { 154 Assert(pMemNt-> Core.pv);154 Assert(pMemNt->cMdls == 0 && pMemNt->Core.pv); 155 155 PRTR0MEMOBJNT pMemNtParent = (PRTR0MEMOBJNT)pMemNt->Core.uRel.Child.pParent; 156 156 Assert(pMemNtParent); 157 157 if (pMemNtParent->cMdls) 158 158 { 159 Assert(pMemNt->cMdls == 1 && pMemNt->apMdls[0]);160 159 Assert(pMemNtParent->cMdls == 1 && pMemNtParent->apMdls[0]); 161 160 Assert( pMemNt->Core.u.Mapping.R0Process == NIL_RTR0PROCESS … … 167 166 Assert( pMemNtParent->Core.enmType == RTR0MEMOBJTYPE_PHYS 168 167 && !pMemNtParent->Core.u.Phys.fAllocated); 168 Assert(pMemNt->Core.u.Mapping.R0Process == NIL_RTR0PROCESS); 169 169 MmUnmapIoSpace(pMemNt->Core.pv, pMemNt->Core.cb); 170 170 } … … 631 631 R0Process == NIL_RTR0PROCESS ? KernelMode : UserMode, 632 632 MmCached, 633 pvFixed == (void *)-1 ? pvFixed : NULL,633 pvFixed != (void *)-1 ? pvFixed : NULL, 634 634 FALSE /* no bug check on failure */, 635 635 NormalPagePriority);
Note:
See TracChangeset
for help on using the changeset viewer.