VirtualBox

Changeset 21428 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Jul 9, 2009 11:11:11 AM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
49816
Message:

Main: remove ENoMemory exception class, replace with std::bad_alloc() to avoid string allocations after memory allocation failed already

Location:
trunk/src/VBox/Main
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/MachineImpl.cpp

    r21404 r21428  
    69756975                                               emptyStr);
    69766976    }
    6977     catch (xml::ENoMemory e)
     6977    catch(std::bad_alloc &e)
    69786978    {
    69796979        return E_OUTOFMEMORY;
  • trunk/src/VBox/Main/xml/Settings.cpp

    r19942 r21428  
    415415            value = xmlEncodeSpecialChars (mNode->doc, value);
    416416            if (value == NULL)
    417                 throw xml::ENoMemory();
     417                throw std::bad_alloc();
    418418        }
    419419
     
    449449                                  (const xmlChar *) aValue);
    450450    if (attr == NULL)
    451         throw xml::ENoMemory();
     451        throw std::bad_alloc();
    452452}
    453453
     
    502502    xmlNodePtr node = xmlNewChild (mNode, NULL, (const xmlChar *) aName, NULL);
    503503    if (node == NULL)
    504         throw xml::ENoMemory();
     504        throw std::bad_alloc();
    505505
    506506    return Key (new XmlKeyBackend (node));
     
    584584    m->ctxt = xmlNewParserCtxt();
    585585    if (m->ctxt == NULL)
    586         throw xml::ENoMemory();
     586        throw std::bad_alloc();
    587587}
    588588
     
    11481148        delete ctxt;
    11491149
    1150         throw xml::ENoMemory();
     1150        throw std::bad_alloc();
    11511151    }
    11521152    catch (const xml::EIPRTFailure &err) { sThat->m->trappedErr.reset (stdx::new_exception_trap (err)); }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette