Changeset 221 for branches/samba-3.3.x/source/client/client.c
- Timestamp:
- May 24, 2009, 7:17:10 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/client/client.c
r206 r221 1786 1786 ****************************************************************************/ 1787 1787 1788 static void free_file_list (struct file_list *l ist_head)1788 static void free_file_list (struct file_list *l_head) 1789 1789 { 1790 1790 struct file_list *list, *next; 1791 1791 1792 for (list = l ist_head; list; list = next) {1792 for (list = l_head; list; list = next) { 1793 1793 next = list->next; 1794 DLIST_REMOVE(l ist_head, list);1794 DLIST_REMOVE(l_head, list); 1795 1795 SAFE_FREE(list->file_path); 1796 1796 SAFE_FREE(list);
Note:
See TracChangeset
for help on using the changeset viewer.