diff --git a/xmltest.cpp b/xmltest.cpp index 276c61b..799433a 100644 --- a/xmltest.cpp +++ b/xmltest.cpp @@ -1615,13 +1615,14 @@ int main( int argc, const char ** argv ) // If it doesn't assert, it passes. Caused by objects // getting created during parsing which are then // inaccessible in the memory pools. + const char* xmlText = ""; { XMLDocument doc; - doc.Parse(""); + doc.Parse(xmlText); } { XMLDocument doc; - doc.Parse(""); + doc.Parse(xmlText); doc.Clear(); } }