Changeset 12924 in vbox for trunk/src/VBox/Devices/VMMDev
- Timestamp:
- Oct 2, 2008 10:18:50 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37336
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VBoxDev.cpp
r12743 r12924 1606 1606 int rc; 1607 1607 1608 AssertReturn( iRegion <= 2 && enmType == PCI_ADDRESS_SPACE_MEM|| enmType == PCI_ADDRESS_SPACE_MEM_PREFETCH, VERR_INTERNAL_ERROR);1608 AssertReturn((iRegion <= 2 && enmType == PCI_ADDRESS_SPACE_MEM) || enmType == PCI_ADDRESS_SPACE_MEM_PREFETCH, VERR_INTERNAL_ERROR); 1609 1609 Assert(pThis->pVMMDevRAMR3 != NULL); 1610 1610 Assert(pThis->pVMMDevHeapR3 != NULL); … … 1630 1630 } 1631 1631 } 1632 else 1633 if (iRegion == 2) 1632 else if (iRegion == 2) 1634 1633 { 1635 1634 if (GCPhysAddress != NIL_RTGCPHYS) … … 1654 1653 } 1655 1654 } 1655 else 1656 rc = VERR_INVALID_PARAMETER; 1656 1657 1657 1658 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.