Changeset 5517 in vbox
- Timestamp:
- Oct 26, 2007 3:40:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CFGM.cpp
r4507 r5517 771 771 RTUUID Uuid; 772 772 RTUuidClear(&Uuid); 773 rc = CFGMR3InsertBytes(pCfg, "UUID", &Uuid, sizeof(Uuid)); 773 rc = CFGMR3InsertBytes(pCfg, "UUID", &Uuid, sizeof(Uuid)); 774 774 UPDATERC(); 775 775 /* Bios logo. */ … … 1078 1078 if (RT_SUCCESS(rc)) 1079 1079 { 1080 Assert( pNewChild->pFirstChild);1080 Assert(!pNewChild->pFirstChild); 1081 1081 pNewChild->pFirstChild = pSubTree->pFirstChild; 1082 Assert( pNewChild->pFirstLeaf);1082 Assert(!pNewChild->pFirstLeaf); 1083 1083 pNewChild->pFirstLeaf = pSubTree->pFirstLeaf; 1084 1084 if (ppChild) … … 1386 1386 if (pNode->pParent) 1387 1387 pNode->pParent->pFirstChild = pNode->pNext; 1388 else if (pNode == pNode->pVM->cfgm.s.pRoot) 1388 else if (pNode == pNode->pVM->cfgm.s.pRoot) /* might be a different tree */ 1389 1389 pNode->pVM->cfgm.s.pRoot = NULL; 1390 1390 } … … 1400 1400 pNode->pParent = NULL; 1401 1401 MMR3HeapFree(pNode); 1402 1403 1402 } 1404 1403 }
Note:
See TracChangeset
for help on using the changeset viewer.