Ticket #923: xmlformat_sort_2.diff
| File xmlformat_sort_2.diff, 724 bytes (added by paule, 3 years ago) |
|---|
-
src/xmlformat.c
67 67 return FALSE; 68 68 } 69 69 70 if(!osync_xmlformat_sort(xmlformat, error)) { 71 osync_trace(TRACE_EXIT_ERROR, "%s: %s", __func__, osync_error_print(error)); 72 return FALSE; 73 } 74 70 75 *output = (char *) xmlformat; 71 76 *outpsize = osync_xmlformat_size(); 72 77 … … 303 308 304 309 osync_trace(TRACE_ENTRY, "%s(%p, %i)", __func__, data, size, error); 305 310 311 if (!osync_xmlformat_sort((OSyncXMLFormat *)data, error)) 312 goto error; 313 306 314 fieldlist = osync_xmlformat_search_field((OSyncXMLFormat *)data, attribute, error, NULL); 307 315 if (!fieldlist) 308 316 goto error;
