- Timestamp:
- Aug 24, 2010 4:11:16 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServicePropCache.cpp
r31933 r31934 369 369 while (pNode) 370 370 { 371 PVBOXSERVICEVEPROPCACHEENTRY pNext = RTListNodeIsLast(&pCache->NodeHead, &pNode->NodeSucc) 372 ? NULL : 373 RTListNodeGetNext(&pNode->NodeSucc, 374 VBOXSERVICEVEPROPCACHEENTRY, NodeSucc); 375 RTListNodeRemove(&pNode->NodeSucc); 376 371 377 /* 372 378 * When destroying the cache and we have a temporary value, remove the … … 383 389 pNode->fFlags = 0; 384 390 385 PVBOXSERVICEVEPROPCACHEENTRY pNext = RTListNodeGetNext(&pNode->NodeSucc, VBOXSERVICEVEPROPCACHEENTRY, NodeSucc);386 RTListNodeRemove(&pNode->NodeSucc);387 391 RTMemFree(pNode); 388 392 389 if (pNext && RTListNodeIsLast(&pCache->NodeHead, &pNext->NodeSucc))390 break;391 393 pNode = pNext; 392 394 }
Note:
See TracChangeset
for help on using the changeset viewer.