diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2003-04-04 16:09:01 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2003-04-04 16:09:01 +0000 |
commit | adba5f1b0a43199fd4f0a0b4e1d2274758529d55 (patch) | |
tree | 2ec21163b5f5732bb462fb92352f1da6123178d5 /parser.c | |
parent | a48ed3d6de02b6a78e08ff1321eed720dea117e7 (diff) | |
download | libxml2-adba5f1b0a43199fd4f0a0b4e1d2274758529d55.tar.gz |
fixed a possible problem with xmlRecoverMemory() Daniel
* parser.c: fixed a possible problem with xmlRecoverMemory()
Daniel
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -10735,6 +10735,8 @@ xmlSAXParseMemoryWithData(xmlSAXHandlerPtr sax, const char *buffer, ctxt->_private=data; } + ctxt->recovery = recovery; + xmlParseDocument(ctxt); if ((ctxt->wellFormed) || recovery) ret = ctxt->myDoc; |