Changeset 27245 in vbox
- Timestamp:
- Mar 10, 2010 12:43:50 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/VBoxHDD.cpp
r27232 r27245 1734 1734 1735 1735 if (RT_SUCCESS(rc) && pCbProgress && pCbProgress->pfnProgress) 1736 pCbProgress->pfnProgress(pIfProgress , 100);1736 pCbProgress->pfnProgress(pIfProgress->pvUser, 100); 1737 1737 1738 1738 LogFlowFunc(("returns %Rrc\n", rc)); … … 1965 1965 1966 1966 if (RT_SUCCESS(rc) && pCbProgress && pCbProgress->pfnProgress) 1967 pCbProgress->pfnProgress(pIfProgress , 100);1967 pCbProgress->pfnProgress(pIfProgress->pvUser, 100); 1968 1968 1969 1969 LogFlowFunc(("returns %Rrc\n", rc)); … … 2338 2338 PVDINTERFACE pDstVDIfsOperation) 2339 2339 { 2340 int rc = VINF_SUCCESS; 2340 int rc = VINF_SUCCESS; 2341 2341 int rc2; 2342 2342 bool fLockReadFrom = false, fLockWriteFrom = false, fLockWriteTo = false; … … 2499 2499 &PCHSGeometryFrom, &LCHSGeometryFrom, 2500 2500 NULL, uOpenFlagsFrom & ~VD_OPEN_FLAGS_READONLY, NULL, NULL); 2501 2501 2502 2502 rc2 = vdThreadStartWrite(pDiskTo); 2503 2503 AssertRC(rc2);
Note:
See TracChangeset
for help on using the changeset viewer.