Changeset 7034 in vbox for trunk/src/VBox
- Timestamp:
- Feb 20, 2008 1:29:17 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/GVMMR0.cpp
r7018 r7034 834 834 uint16_t iPrev = pGVMM->iUsedHead; 835 835 int c = RT_ELEMENTS(pGVMM->aHandles) + 2; 836 while ( !iPrev)836 while (iPrev) 837 837 { 838 838 if (RT_UNLIKELY(iPrev >= RT_ELEMENTS(pGVMM->aHandles))) … … 861 861 } 862 862 863 Assert(pGVMM->aHandles[iPrev].iNext == iHandle); 863 864 pGVMM->aHandles[iPrev].iNext = pHandle->iNext; 864 865 }
Note:
See TracChangeset
for help on using the changeset viewer.