From 0f2a6f2bf9c2c84eb7c45d06d27bb4d531095efe Mon Sep 17 00:00:00 2001 From: d Date: Tue, 21 Sep 2010 16:04:37 -0300 Subject: [PATCH] add XML_PARSE_HUGE to handle documents with more than 256 levels of nesting --- src/xml/repr-io.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xml/repr-io.cpp b/src/xml/repr-io.cpp index fa5e9b6ed..5b26d438f 100644 --- a/src/xml/repr-io.cpp +++ b/src/xml/repr-io.cpp @@ -294,7 +294,7 @@ sp_repr_read_file (const gchar * filename, const gchar *default_ns) &src, localFilename, src.getEncoding(), - XML_PARSE_NOENT ); + XML_PARSE_NOENT | XML_PARSE_HUGE); } } -- 2.30.2