Ticket #1183: fix-xmlfield-firstchild-on-assembling.diff
| File fix-xmlfield-firstchild-on-assembling.diff, 478 bytes (added by dgollub, 2 years ago) |
|---|
-
opensync/xmlformat/opensync_xmlfield.c
65 65 xmlfield->prev = parent->child; 66 66 if (xmlfield->prev) 67 67 xmlfield->prev->next = xmlfield; 68 parent->child = xmlfield; 68 if (!parent->child) // This breaks xmlformat_is_sorted testcase 69 parent->child = xmlfield; 69 70 } 70 71 71 72
