From f0cc7ccc7db45fe1c055768a50be2243ed4e863c Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Sat, 26 Aug 2000 21:40:43 +0000 Subject: libxml now grok Docbook-3.1.5 and Docbook-4.1.1 DTDs, this popped out a couple of bugs and 3 speed issues, there is only on minor speed issue left. Assorted collection of user reported bugs and fixes: - doc/encoding.html: added encoding aliases doc - doc/xml.html: updates - encoding.[ch]: added EncodingAliases functions - entities.[ch] valid.[ch] debugXML.c: removed two serious bottleneck affecting large DTDs like Docbook - parser.[ch] xmllint.c: added a pedantic option, will be useful - SAX.c: redefinition of entities is reported in pedantic mode - testHTML.c: uninitialized warning from gcc - uri.c: fixed a couple of bugs - TODO: added issue raised by Michael Daniel --- testHTML.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'testHTML.c') diff --git a/testHTML.c b/testHTML.c index d680cf03..f998072b 100644 --- a/testHTML.c +++ b/testHTML.c @@ -572,7 +572,8 @@ xmlSAXHandlerPtr debugSAXHandler = &debugSAXHandlerStruct; ************************************************************************/ void parseSAXFile(char *filename) { - htmlDocPtr doc; + htmlDocPtr doc = NULL; + /* * Empty callbacks for checking */ -- cgit v1.2.1