fixed initialisation problem for htmlReadMemory (bug 149041)

* HTMLparser.c: fixed initialisation problem for htmlReadMemory
  (bug 149041)
This commit is contained in:
William M. Brack 2004-08-03 15:13:29 +00:00
parent 6ca9ec82ce
commit d43cdcd6a2
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Tue Aug 3 08:14:44 PDT 2004 William Brack <wbrack@mmm.com.hk>
* HTMLparser.c: fixed initialisation problem for htmlReadMemory
(bug 149041)
Sat Jul 31 11:01:33 PDT 2004 William Brack <wbrack@mmm.com.hk>
* doc/buildDocBookCatalog: enhanced per bug 119876. Further

View File

@ -5648,6 +5648,8 @@ htmlReadMemory(const char *buffer, int size, const char *URL, const char *encodi
ctxt = xmlCreateMemoryParserCtxt(buffer, size);
if (ctxt == NULL)
return (NULL);
if (ctxt->sax != NULL)
memcpy(ctxt->sax, &htmlDefaultSAXHandler, sizeof(xmlSAXHandlerV1));
return (htmlDoRead(ctxt, URL, encoding, options, 0));
}