Changeset 95338 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Jun 21, 2022 9:20:50 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r95337 r95338 4657 4657 * placing it to local cache. */ 4658 4658 4659 int rc = GuestPropValidateName(prop.strName.c_str(), (uint32_t)prop.strName.length() + 1 /* '\0' */);4659 int rc = GuestPropValidateName(prop.strName.c_str(), prop.strName.length() + 1 /* '\0' */); 4660 4660 if (RT_FAILURE(rc)) 4661 4661 { … … 4665 4665 } 4666 4666 4667 rc = GuestPropValidateValue(prop.strValue.c_str(), (uint32_t)prop.strValue.length() + 1 /* '\0' */);4667 rc = GuestPropValidateValue(prop.strValue.c_str(), prop.strValue.length() + 1 /* '\0' */); 4668 4668 if (rc == VERR_TOO_MUCH_DATA) 4669 4669 {
Note:
See TracChangeset
for help on using the changeset viewer.