Changeset 29414 in vbox
- Timestamp:
- May 12, 2010 12:35:23 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/GMMR0.cpp
r29409 r29414 3764 3764 { 3765 3765 /* First time; create a page descriptor array. */ 3766 Log(("Allocate page descriptor array for %d pages\n", cPages)); 3766 3767 pGlobalRegion->paHCPhysPageID = (uint32_t *)RTMemAlloc(cPages * sizeof(*pGlobalRegion->paHCPhysPageID)); 3767 3768 if (!pGlobalRegion->paHCPhysPageID) … … 3783 3784 { 3784 3785 /* We've seen this shared page for the first time? */ 3785 if (pGlobalRegion->paHCPhysPageID == NIL_GMM_PAGEID)3786 if (pGlobalRegion->paHCPhysPageID[i] == NIL_GMM_PAGEID) 3786 3787 { 3787 3788 /* Easy case: just change the internal page type. */
Note:
See TracChangeset
for help on using the changeset viewer.