Changeset 58135 in vbox
- Timestamp:
- Oct 9, 2015 10:08:57 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/xml.cpp
r57944 r58135 1740 1740 1741 1741 doc.m->reset(); 1742 const int options = XML_PARSE_NOBLANKS /* remove blank nodes */ 1743 | XML_PARSE_NONET /* forbit any network access */ 1744 #ifdef XML_PARSE_HUGE /* introduced in libxml2 2.7.0 */ 1745 | XML_PARSE_HUGE /* don't restrict the node depth 1746 to 256 (bad for snapshots!) */ 1747 #endif 1748 ; 1742 1749 if (!(doc.m->plibDocument = xmlCtxtReadMemory(m_ctxt, 1743 1750 (const char*)pvBuf, … … 1745 1752 pcszFilename, 1746 1753 NULL, // encoding = auto 1747 XML_PARSE_NOBLANKS | XML_PARSE_NONET)))1754 options))) 1748 1755 throw XmlError(xmlCtxtGetLastError(m_ctxt)); 1749 1756
Note:
See TracChangeset
for help on using the changeset viewer.