mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-30 22:43:14 +03:00
applied patch from Alfred Mickautsch for better DTD support. fixed bug
* xmlwriter.c include/libxml/xmlwriter.h doc/* : applied patch from Alfred Mickautsch for better DTD support. * SAX2.c HTMLparser.c parser.c xinclude.c xmllint.c xmlreader.c xmlschemas.c: fixed bug #137867 i.e. fixed properly the way reference counting is handled in the XML parser which had the side effect of removing a lot of hazardous cruft added to try to fix the problems associated as they popped up. * xmlIO.c: FILE * close fixup for stderr/stdout Daniel
This commit is contained in:
@ -374,8 +374,8 @@ xmlSchemaNewSchema(xmlSchemaParserCtxtPtr ctxt)
|
||||
return (NULL);
|
||||
}
|
||||
memset(ret, 0, sizeof(xmlSchema));
|
||||
xmlDictReference(ctxt->dict);
|
||||
ret->dict = ctxt->dict;
|
||||
xmlDictReference(ret->dict);
|
||||
|
||||
return (ret);
|
||||
}
|
||||
|
Reference in New Issue
Block a user