Changeset 58169 in vbox
- Timestamp:
- Oct 12, 2015 8:50:55 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 103280
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Runtime/r3/xml.cpp ¶
r58168 r58169 1876 1876 ReadContext context(pcszFilename); 1877 1877 doc.m->reset(); 1878 const int options = XML_PARSE_NOBLANKS /* remove blank nodes */ 1879 | XML_PARSE_NONET /* forbit any network access */ 1880 #if LIBXML_VERSION >= 20700 1881 | XML_PARSE_HUGE /* don't restrict the node depth 1882 to 256 (bad for snapshots!) */ 1883 #endif 1884 ; 1878 1885 if (!(doc.m->plibDocument = xmlCtxtReadIO(m_ctxt, 1879 1886 ReadCallback, … … 1882 1889 pcszFilename, 1883 1890 NULL, // encoding = auto 1884 XML_PARSE_NOBLANKS | XML_PARSE_NONET)))1891 options))) 1885 1892 throw XmlError(xmlCtxtGetLastError(m_ctxt)); 1886 1893
Note:
See TracChangeset
for help on using the changeset viewer.