1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00

fixing bug #151694, line should always be set in the elements. Daniel

* parser.c: fixing bug #151694, line should always be set in the
  elements.
Daniel
This commit is contained in:
Daniel Veillard 2005-01-16 18:02:13 +00:00
parent 6fc5db0090
commit e3740edc1c
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Sun Jan 16 19:01:06 CET 2005 Daniel Veillard <daniel@veillard.com>
* parser.c: fixing bug #151694, line should always be set in the
elements.
Sun Jan 16 01:04:18 CET 2005 Daniel Veillard <daniel@veillard.com>
* xmlschemastypes.c: trying to fix at least the message from

View File

@ -11500,8 +11500,7 @@ xmlCreateURLParserCtxt(const char *filename, int options)
return(NULL);
}
if (options != 0)
xmlCtxtUseOptions(ctxt, options);
xmlCtxtUseOptions(ctxt, options);
inputStream = xmlLoadExternalEntity(filename, NULL, ctxt);
if (inputStream == NULL) {