diff --git a/src/pugixml.cpp b/src/pugixml.cpp index 13b9504..2b365d9 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -526,7 +526,8 @@ PUGI__NS_BEGIN xml_memory_page* page = xml_memory_page::construct(memory); assert(page); - page->allocator = _root->allocator; + assert(this == _root->allocator); + page->allocator = this; return page; } @@ -7091,8 +7092,12 @@ namespace pugi #endif // move allocation state - doc->_root = other->_root; - doc->_busy_size = other->_busy_size; + // note that other->_root may point to the embedded document page, in which case we should keep original (empty) state + if (other->_root != PUGI__GETPAGE(other)) + { + doc->_root = other->_root; + doc->_busy_size = other->_busy_size; + } // move buffer state doc->buffer = other->buffer; diff --git a/tests/test_document.cpp b/tests/test_document.cpp index 8ed2e21..e853b61 100644 --- a/tests/test_document.cpp +++ b/tests/test_document.cpp @@ -1806,4 +1806,15 @@ TEST(document_move_compact_fail) CHECK(!docs[safe_count+1].first_child()); } #endif + +TEST(document_move_assign_empty) +{ + xml_document doc; + doc.append_child(STR("node")); + + doc = xml_document(); + doc.append_child(STR("node2")); + + CHECK_NODE(doc, ""); +} #endif