Changeset 21428 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jul 9, 2009 11:11:11 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49816
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r21404 r21428 6975 6975 emptyStr); 6976 6976 } 6977 catch (xml::ENoMemorye)6977 catch(std::bad_alloc &e) 6978 6978 { 6979 6979 return E_OUTOFMEMORY; -
trunk/src/VBox/Main/xml/Settings.cpp
r19942 r21428 415 415 value = xmlEncodeSpecialChars (mNode->doc, value); 416 416 if (value == NULL) 417 throw xml::ENoMemory();417 throw std::bad_alloc(); 418 418 } 419 419 … … 449 449 (const xmlChar *) aValue); 450 450 if (attr == NULL) 451 throw xml::ENoMemory();451 throw std::bad_alloc(); 452 452 } 453 453 … … 502 502 xmlNodePtr node = xmlNewChild (mNode, NULL, (const xmlChar *) aName, NULL); 503 503 if (node == NULL) 504 throw xml::ENoMemory();504 throw std::bad_alloc(); 505 505 506 506 return Key (new XmlKeyBackend (node)); … … 584 584 m->ctxt = xmlNewParserCtxt(); 585 585 if (m->ctxt == NULL) 586 throw xml::ENoMemory();586 throw std::bad_alloc(); 587 587 } 588 588 … … 1148 1148 delete ctxt; 1149 1149 1150 throw xml::ENoMemory();1150 throw std::bad_alloc(); 1151 1151 } 1152 1152 catch (const xml::EIPRTFailure &err) { sThat->m->trappedErr.reset (stdx::new_exception_trap (err)); }
Note:
See TracChangeset
for help on using the changeset viewer.