Fix for bug #584832: incorrect handling of internal entities.

The wrong string pool was cleared.
This commit is contained in:
Karl Waclawek 2002-07-22 13:32:37 +00:00
parent d8d3b5fe2e
commit 8d051e9409

View file

@ -2700,7 +2700,7 @@ processXmlDecl(XML_Parser parser, int isGeneralTextEntity,
return XML_ERROR_NO_MEMORY;
}
result = handleUnknownEncoding(parser, storedEncName);
poolClear(&tempPool);
poolClear(&temp2Pool);
if (result == XML_ERROR_UNKNOWN_ENCODING)
eventPtr = encodingName;
return result;