Changeset 31746 in vbox
- Timestamp:
- Aug 18, 2010 10:08:52 AM (14 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/GuestImpl.cpp
r31745 r31746 1225 1225 1226 1226 CheckComArgExpr(aPID, aPID > 0); 1227 1227 if (aSize < 0) 1228 return setError(E_INVALIDARG, tr("The size argument (%lld) is negative"), aSize); 1228 1229 if (aFlags != 0) /* Flags are not supported at the moment. */ 1229 return E_INVALIDARG;1230 return setError(E_INVALIDARG, tr("Unknown flags (%#x)"), aFlags); 1230 1231 1231 1232 AutoCaller autoCaller(this); -
trunk/src/VBox/Main/MachineImpl.cpp
r31742 r31746 5620 5620 LogFlowThisFunc(("\n")); 5621 5621 CheckComArgOutSafeArrayPointerValid(aData); 5622 if (aSize < 0) 5623 return setError(E_INVALIDARG, tr("The size argument (%lld) is negative"), aSize); 5622 5624 5623 5625 AutoCaller autoCaller(this); -
trunk/src/VBox/Main/MediumImpl.cpp
r31712 r31746 2131 2131 { 2132 2132 CheckComArgOutPointerValid(aProgress); 2133 if (aLogicalSize < 0) 2134 return setError(E_INVALIDARG, tr("The medium size argument (%lld) is negative"), aLogicalSize); 2133 2135 2134 2136 AutoCaller autoCaller(this);
Note:
See TracChangeset
for help on using the changeset viewer.