Diff for /XML/HTMLparser.c between versions 1.57 and 1.58

version 1.57, 2000/08/07 13:43:51 version 1.58, 2000/08/16 19:53:33
Line 2866  htmlParseReference(htmlParserCtxtPtr ctx Line 2866  htmlParseReference(htmlParserCtxtPtr ctx
     } else {      } else {
         ent = htmlParseEntityRef(ctxt, &name);          ent = htmlParseEntityRef(ctxt, &name);
         if (name == NULL) {          if (name == NULL) {
             ctxt->sax->characters(ctxt->userData, BAD_CAST "&", 1);              if ((ctxt->sax != NULL) && (ctxt->sax->characters != NULL))
                   ctxt->sax->characters(ctxt->userData, BAD_CAST "&", 1);
             return;              return;
         }          }
         if ((ent == NULL) || (ent->value <= 0)) {          if ((ent == NULL) || (ent->value <= 0)) {

Removed from v.1.57  
changed lines
  Added in v.1.58


Webmaster