Changeset 15568 in vbox
- Timestamp:
- Dec 16, 2008 10:23:39 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HardDisk2Impl.cpp
r15556 r15568 3407 3407 vrc = VDOpen (hdd, format, location, 3408 3408 VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_INFO, 3409 NULL);3409 that->mm.vdDiskIfaces); 3410 3410 if (RT_FAILURE (vrc)) 3411 3411 { … … 3427 3427 NULL, targetId.raw(), 3428 3428 VD_OPEN_FLAGS_NORMAL, 3429 NULL, that->mm.vdDiskIfaces); 3429 target->mm.vdDiskIfaces, 3430 that->mm.vdDiskIfaces); 3430 3431 3431 3432 that->mm.vdProgress = NULL; … … 3574 3575 it == chain->begin() ? 3575 3576 VD_OPEN_FLAGS_INFO : 0, 3576 NULL);3577 (*it)->mm.vdDiskIfaces); 3577 3578 if (RT_FAILURE (vrc)) 3578 3579 throw vrc; … … 3624 3625 vrc = VDOpen (hdd, Utf8Str ((*it)->mm.format), 3625 3626 Utf8Str ((*it)->m.locationFull), 3626 VD_OPEN_FLAGS_INFO, NULL); 3627 VD_OPEN_FLAGS_INFO, 3628 (*it)->mm.vdDiskIfaces); 3627 3629 if (RT_FAILURE (vrc)) 3628 3630 throw vrc; … … 3864 3866 vrc = VDOpen (hdd, format, location, 3865 3867 VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_INFO, 3866 NULL);3868 that->mm.vdDiskIfaces); 3867 3869 if (RT_FAILURE (vrc)) 3868 3870 { … … 3886 3888 vrc = VDCopy (hdd, 0, targetHdd, targetFormat, 3887 3889 targetLocation, false, 0, targetId.raw(), 3888 NULL, NULL, that->mm.vdDiskIfaces); 3890 NULL, target->mm.vdDiskIfaces, 3891 that->mm.vdDiskIfaces); 3889 3892 3890 3893 that->mm.vdProgress = NULL; … … 4009 4012 vrc = VDOpen (hdd, format, location, 4010 4013 VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_INFO, 4011 NULL);4014 that->mm.vdDiskIfaces); 4012 4015 if (RT_SUCCESS (vrc)) 4013 4016 vrc = VDClose (hdd, true /* fDelete */);
Note:
See TracChangeset
for help on using the changeset viewer.