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

removing a non-linear behaviour from ID/IDREF raised by Petr Pajas. Call

* valid.c: removing a non-linear behaviour from ID/IDREF raised
  by Petr Pajas. Call xmlListAppend instead of xmlListInsert in
  xmlAddRef
Daniel
This commit is contained in:
Daniel Veillard 2004-02-17 16:30:24 +00:00
parent a9a1b10514
commit 965983a5d5
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Tue Feb 17 17:26:31 CET 2004 Daniel Veillard <daniel@veillard.com>
* valid.c: removing a non-linear behaviour from ID/IDREF raised
by Petr Pajas. Call xmlListAppend instead of xmlListInsert in
xmlAddRef
Tue Feb 17 13:27:27 CET 2004 Daniel Veillard <daniel@veillard.com>
* python/tests/indexes.py python/tests/reader.py: indicated

View File

@ -2798,7 +2798,8 @@ xmlAddRef(xmlValidCtxtPtr ctxt, xmlDocPtr doc, const xmlChar *value,
return(NULL);
}
}
xmlListInsert(ref_list, ret);
/* xmlListInsert(ref_list, ret); */
xmlListAppend(ref_list, ret);
return(ret);
}