Changeset 11444 in vbox for trunk/src/VBox/Main
- Timestamp:
- Aug 15, 2008 2:33:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HardDiskImpl.cpp
r11435 r11444 4086 4086 /// obviously. This of course changes locking behavior, but for now 4087 4087 /// this is acceptable. A better solution needs to be found later. 4088 vrc = VDOpen (mContainer, "VMDK", filePath, VD_OPEN_FLAGS_NORMAL );4088 vrc = VDOpen (mContainer, "VMDK", filePath, VD_OPEN_FLAGS_NORMAL, NULL); 4089 4089 if (VBOX_FAILURE (vrc)) 4090 4090 break; … … 4932 4932 Guid id, parentId; 4933 4933 4934 vrc = VDOpen (mContainer, Utf8Str (mFormat), location, VD_OPEN_FLAGS_INFO );4934 vrc = VDOpen (mContainer, Utf8Str (mFormat), location, VD_OPEN_FLAGS_INFO, NULL); 4935 4935 if (VBOX_FAILURE (vrc)) 4936 4936 break; … … 5820 5820 /// obviously. This of course changes locking behavior, but for now 5821 5821 /// this is acceptable. A better solution needs to be found later. 5822 vrc = VDOpen (mContainer, "VHD", filePath, VD_OPEN_FLAGS_NORMAL );5822 vrc = VDOpen (mContainer, "VHD", filePath, VD_OPEN_FLAGS_NORMAL, NULL); 5823 5823 if (VBOX_FAILURE (vrc)) 5824 5824 break;
Note:
See TracChangeset
for help on using the changeset viewer.