1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-30 22:43:14 +03:00

Removal of threading problems, update documentation, added SAX tests, Daniel

This commit is contained in:
Daniel Veillard
1999-04-21 20:12:07 +00:00
parent 517752b985
commit 5099ae89ef
19 changed files with 4311 additions and 769 deletions

View File

@ -4337,7 +4337,7 @@ xmlFreeParserCtxt(xmlParserCtxtPtr ctxt)
if (ctxt->nodeTab != NULL) free(ctxt->nodeTab);
if (ctxt->inputTab != NULL) free(ctxt->inputTab);
if (ctxt->version != NULL) free(ctxt->version);
if (ctxt->version != NULL) free((char *) ctxt->version);
free(ctxt);
}