1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

augmented types supported a number of new bug fixes and documentation

* gentest.py testapi.c: augmented types supported
* HTMLtree.c tree.c xmlreader.c xmlwriter.c: a number of new
  bug fixes and documentation updates.
Daniel
This commit is contained in:
Daniel Veillard
2004-11-06 19:24:28 +00:00
parent 57b2516af5
commit d5cc0f7f51
7 changed files with 1728 additions and 84 deletions

View File

@@ -4213,8 +4213,8 @@ void
xmlTextReaderGetErrorHandler(xmlTextReaderPtr reader,
xmlTextReaderErrorFunc *f,
void **arg) {
*f = reader->errorFunc;
*arg = reader->errorFuncArg;
if (f != NULL) *f = reader->errorFunc;
if (arg != NULL) *arg = reader->errorFuncArg;
}