comparison src/pan-util.c @ 780:44128da39e13

Drop initialization to NULL since filelist_read() will take care of it.
author zas_
date Tue, 03 Jun 2008 11:24:16 +0000
parents a1dcef8cd1ae
children d6a7fb4b8e7c
comparison
equal deleted inserted replaced
779:8b21337bc47b 780:44128da39e13
209 } 209 }
210 210
211 GList *pan_list_tree(const gchar *path, SortType sort, gint ascend, 211 GList *pan_list_tree(const gchar *path, SortType sort, gint ascend,
212 gint ignore_symlinks) 212 gint ignore_symlinks)
213 { 213 {
214 GList *flist = NULL; 214 GList *flist;
215 GList *dlist = NULL; 215 GList *dlist;
216 GList *result; 216 GList *result;
217 GList *folders; 217 GList *folders;
218 218
219 filelist_read(path, &flist, &dlist); 219 filelist_read(path, &flist, &dlist);
220 if (sort != SORT_NONE) 220 if (sort != SORT_NONE)