From c1ecaac78ca9998097945e8906e9c1fb7b05f78b Mon Sep 17 00:00:00 2001 From: vl Date: Mon, 10 May 2010 17:38:27 +0200 Subject: [PATCH] Fixed: #857 linux/assertion failure CCoTask::getCurrentTask() == this. patch by ratmice --- code/nel/src/misc/i_xml.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/src/misc/i_xml.cpp b/code/nel/src/misc/i_xml.cpp index 9308697cb..536358f81 100644 --- a/code/nel/src/misc/i_xml.cpp +++ b/code/nel/src/misc/i_xml.cpp @@ -101,7 +101,7 @@ void CIXml::release () // Free it xmlClearParserCtxt (_Parser); xmlFreeParserCtxt (_Parser); - xmlCleanupParser (); + // commented due to the bug #857 xmlCleanupParser (); _Parser = NULL; }