I have initialised xerces, using this code:

try
        {
            XMLPlatformUtils::Initialize();
        }
        catch(const XMLException &toCatch)
        {
            XERCES_STD_QUALIFIER cerr << "Error during Xerces-c
Initialization.\n"
                 << "  Exception message:"
                 << StrX(toCatch.getMessage()) << XERCES_STD_QUALIFIER endl;
        }



If i then initialise it again... what happens? Does it break?
In short what happens if I do this:

XMLPlatformUtils::Initialize();
XMLPlatformUtils::Initialize();

Reply via email to