Changeset 15994 in vbox
- Timestamp:
- Jan 16, 2009 2:16:33 PM (16 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestProp.cpp
r15051 r15994 353 353 * Pack the patterns 354 354 */ 355 Utf8Str Utf8Patterns(argc > 2 ? argv[2] : " ");355 Utf8Str Utf8Patterns(argc > 2 ? argv[2] : "*"); 356 356 for (ssize_t i = 3; i < argc; ++i) 357 357 Utf8Patterns = Utf8StrFmt ("%s,%s", Utf8Patterns.raw(), argv[i]); -
trunk/src/VBox/Main/MachineImpl.cpp
r15991 r15994 3170 3170 if (!VALID_PTR (aPatterns) && (aPatterns != NULL)) 3171 3171 return E_POINTER; 3172 CheckComArgSafeArrayNotNull (aNames); 3173 CheckComArgSafeArrayNotNull (aValues); 3174 CheckComArgSafeArrayNotNull (aTimestamps); 3175 CheckComArgSafeArrayNotNull (aFlags); 3172 3173 if (ComSafeArrayOutIsNull (aNames)) 3174 return E_POINTER; 3175 if (ComSafeArrayOutIsNull (aValues)) 3176 return E_POINTER; 3177 if (ComSafeArrayOutIsNull (aTimestamps)) 3178 return E_POINTER; 3179 if (ComSafeArrayOutIsNull (aFlags)) 3180 return E_POINTER; 3176 3181 3177 3182 AutoCaller autoCaller (this);
Note:
See TracChangeset
for help on using the changeset viewer.