Changeset 35524 in vbox for trunk/src/VBox
- Timestamp:
- Jan 13, 2011 1:41:03 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/COMDefs.cpp
r33540 r35524 226 226 void COMErrorInfo::init(const CVirtualBoxErrorInfo &info) 227 227 { 228 AssertReturnVoid (!info.isNull()); 228 if (info.isNull()) 229 { 230 mIsNull = true; 231 mIsBasicAvailable = false; 232 mIsFullAvailable = false; 233 mResultCode = S_OK; 234 m_pNext = NULL; 235 AssertMsgFailedReturnVoid(("error info is NULL!\n")); 236 } 229 237 230 238 bool gotSomething = false;
Note:
See TracChangeset
for help on using the changeset viewer.