diff options
-rw-r--r-- | src/pugixml.cpp | 7 | ||||
-rw-r--r-- | tests/test_parse.cpp | 15 |
2 files changed, 21 insertions, 1 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp index d8a6888..787f693 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -4316,7 +4316,12 @@ PUGI__NS_BEGIN PUGI__FN xml_parse_result load_buffer_impl(xml_document_struct* doc, xml_node_struct* root, void* contents, size_t size, unsigned int options, xml_encoding encoding, bool is_mutable, bool own, char_t** out_buffer) { // check input buffer - assert(contents || size == 0); + if ((contents==NULL) && (size!=0)) { + xml_parse_result result; + result.status = status_no_document_element; + return result; + } + // get actual encoding xml_encoding buffer_encoding = impl::get_buffer_encoding(encoding, contents, size); diff --git a/tests/test_parse.cpp b/tests/test_parse.cpp index 321b84c..500e44c 100644 --- a/tests/test_parse.cpp +++ b/tests/test_parse.cpp @@ -863,10 +863,25 @@ TEST(parse_declaration_error) TEST(parse_empty) { xml_document doc; + CHECK(doc.load_string(STR("")).status == status_no_document_element && !doc.first_child()); CHECK(doc.load_string(STR(""), parse_fragment) && !doc.first_child()); } +TEST(parse_load_buffer_null) +{ + xml_document doc; + + CHECK(doc.load_buffer(0, 12).status == status_no_document_element && !doc.first_child()); +} + +TEST(parse_load_buffer_empty) +{ + xml_document doc; + + CHECK(doc.load_buffer("foo", 0).status == status_no_document_element); +} + TEST(parse_out_of_memory) { test_runner::_memory_fail_threshold = 256; |