Changeset 57588 in vbox
- Timestamp:
- Aug 31, 2015 1:43:20 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMedium.cpp
r56180 r57588 531 531 QString UIMedium::normalizedID(const QString &strID) 532 532 { 533 AssertMsgReturn(QUuid(strID).toString().remove('{').remove('}') == strID,534 ("CMedium UUID is not valid: '%s'\n", strID.toAscii().constData()),535 nullID());533 /* Handle wrong UUID (null/empty or invalid format): */ 534 if (QUuid(strID).toString().remove('{').remove('}') != strID) 535 return nullID(); 536 536 return strID; 537 537 }
Note:
See TracChangeset
for help on using the changeset viewer.

