Changeset 95339 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Jun 21, 2022 10:33:35 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r95338 r95339 6012 6012 6013 6013 int vrc = GuestPropValidateName(aProperty.c_str(), aProperty.length() + 1 /* '\0' */); 6014 AssertRCReturn( rc, setErrorBoth(E_INVALIDARG, vrc));6014 AssertRCReturn(vrc, setErrorBoth(E_INVALIDARG, vrc)); 6015 6015 6016 6016 vrc = GuestPropValidateValue(aValue.c_str(), aValue.length() + 1 /* '\0' */); 6017 AssertRCReturn( rc, setErrorBoth(E_INVALIDARG, vrc));6017 AssertRCReturn(vrc, setErrorBoth(E_INVALIDARG, vrc)); 6018 6018 6019 6019 HRESULT rc = i_setGuestPropertyToVM(aProperty, aValue, aFlags, /* fDelete = */ false);
Note:
See TracChangeset
for help on using the changeset viewer.