diff --git a/ChangeLog b/ChangeLog index 2b26c3cb..dee486d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Tue Feb 17 17:26:31 CET 2004 Daniel Veillard + + * 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 * python/tests/indexes.py python/tests/reader.py: indicated diff --git a/valid.c b/valid.c index b0c25078..33a2a9a8 100644 --- a/valid.c +++ b/valid.c @@ -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); }