Changeset 64766 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Nov 30, 2016 10:59:48 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112111
- Location:
- trunk/src/VBox/Runtime/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dvm/dvm.cpp
r62477 r64766 348 348 if (RT_FAILURE(rc)) 349 349 { 350 /* Remove all entries. */ 350 351 PRTDVMVOLUMEINTERNAL pItNext, pIt; 351 352 /* Remove all entries. */353 352 RTListForEachSafe(&pThis->VolumeList, pIt, pItNext, RTDVMVOLUMEINTERNAL, VolumeNode) 354 353 { … … 491 490 && !fAllocated) 492 491 { 493 PRTDVMVOLUMEINTERNAL pVol;494 492 bool fVolFound = false; 495 493 uint64_t cbIntersect; … … 503 501 * contigous on the medium. 504 502 */ 503 PRTDVMVOLUMEINTERNAL pVol; 505 504 RTListForEach(&pThis->VolumeList, pVol, RTDVMVOLUMEINTERNAL, VolumeNode) 506 505 { -
trunk/src/VBox/Runtime/common/misc/aiomgr.cpp
r63561 r64766 677 677 unsigned cRequests = 0; 678 678 int rc = VINF_SUCCESS; 679 680 /* Go through the list and queue the requests. */ 679 681 PRTAIOMGRREQ pReqIt; 680 682 PRTAIOMGRREQ pReqItNext; 681 682 /* Go through the list and queue the requests. */683 683 RTListForEachSafe(&pFile->AioMgr.ListWaitingReqs, pReqIt, pReqItNext, RTAIOMGRREQ, NodeWaitingList) 684 684 { … … 764 764 { 765 765 int rc = VINF_SUCCESS; 766 766 767 PRTAIOMGRFILEINT pIt; 767 768 768 RTListForEach(&pThis->ListFiles, pIt, RTAIOMGRFILEINT, AioMgr.NodeAioMgrFiles) 769 769 {
Note:
See TracChangeset
for help on using the changeset viewer.