# HG changeset patch # User gqview # Date 1117955352 0 # Node ID a210a19f26da0f6dba559823c84b93113a964c5a # Parent 276ea4c98d337b6723e93e4972f4b88418e16cee Sun Jun 5 03:05:39 2005 John Ellis * filelist.c (path_list_recursive_append): Fix memory leak by using correct function to free path list. ##### Note: GQview CVS on sourceforge is not always up to date, please use ##### ##### an offical release when making enhancements and translation updates. ##### diff -r 276ea4c98d33 -r a210a19f26da ChangeLog --- a/ChangeLog Sun Jun 05 02:48:54 2005 +0000 +++ b/ChangeLog Sun Jun 05 07:09:12 2005 +0000 @@ -1,3 +1,8 @@ +Sun Jun 5 03:05:39 2005 John Ellis + + * filelist.c (path_list_recursive_append): Fix memory leak by using + correct function to free path list. + Sat Jun 4 22:24:00 2005 John Ellis * exif.[ch]: Use glib provided data types and byte order functions for diff -r 276ea4c98d33 -r a210a19f26da src/filelist.c --- a/src/filelist.c Sun Jun 05 02:48:54 2005 +0000 +++ b/src/filelist.c Sun Jun 05 07:09:12 2005 +0000 @@ -435,7 +435,7 @@ d = path_list_filter(d, TRUE); d = path_list_sort(d); path_list_recursive_append(list, d); - g_list_free(d); + path_list_free(d); } work = work->next;