| 111 | /* ------------------------------------------------------------------------- */ |
| 112 | |
| 113 | static void rsync_xal_free(item_list *xalp) |
| 114 | { |
| 115 | size_t i; |
| 116 | rsync_xa *rxas = xalp->items; |
| 117 | |
| 118 | if (!xalp->malloced) |
| 119 | return; |
| 120 | |
| 121 | for (i = 0; i < xalp->count; i++) { |
| 122 | free(rxas[i].datum); |
| 123 | /*free(rxas[i].name);*/ |
| 124 | } |
| 125 | free(xalp->items); |
| 126 | } |
| 127 | |
| 128 | void free_xattr(stat_x *sxp) |
| 129 | { |
no outgoing calls
no test coverage detected