Changeset 15649 in vbox
- Timestamp:
- Dec 18, 2008 12:37:11 PM (16 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HardDiskFormatImpl.cpp
r14972 r15649 243 243 ComSafeArrayOut (BSTR, aDefaults)) 244 244 { 245 if (ComSafeArrayOutIsNull (aNames) || 246 ComSafeArrayOutIsNull (aDescriptions) || 247 ComSafeArrayOutIsNull (aTypes) || 248 ComSafeArrayOutIsNull (aFlags) || 249 ComSafeArrayOutIsNull (aDefaults)) 250 return E_POINTER; 245 CheckComArgSafeArrayNotNull(aNames); 246 CheckComArgSafeArrayNotNull(aDescriptions); 247 CheckComArgSafeArrayNotNull(aTypes); 248 CheckComArgSafeArrayNotNull(aFlags); 249 CheckComArgSafeArrayNotNull(aDefaults); 251 250 252 251 AutoCaller autoCaller (this); -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r15582 r15649 8672 8672 same and corresponds to the number of supported properties. 8673 8673 8674 The returned arrays are not emptyonly if the8674 The returned arrays are filled in only if the 8675 8675 <link to="HardDiskFormatCapabilities_Properties"/> flag is set. 8676 All arguments must be non-NULL. 8676 8677 8677 8678 <see>DataType</see>
Note:
See TracChangeset
for help on using the changeset viewer.