diff options
author | Dan Winship <danw@src.gnome.org> | 2000-08-07 12:16:26 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-08-07 12:16:26 +0800 |
commit | 3179eb7162b3f9eb4c81abc76e186bba79aa5a67 (patch) | |
tree | ec6475bb6b4ac8f377fa3bf416298f2b70659023 /camel/camel-folder.c | |
parent | eef4069b806ed069a317661a4c5c59f2de58272f (diff) | |
download | gsoc2013-evolution-3179eb7162b3f9eb4c81abc76e186bba79aa5a67.tar gsoc2013-evolution-3179eb7162b3f9eb4c81abc76e186bba79aa5a67.tar.gz gsoc2013-evolution-3179eb7162b3f9eb4c81abc76e186bba79aa5a67.tar.bz2 gsoc2013-evolution-3179eb7162b3f9eb4c81abc76e186bba79aa5a67.tar.lz gsoc2013-evolution-3179eb7162b3f9eb4c81abc76e186bba79aa5a67.tar.xz gsoc2013-evolution-3179eb7162b3f9eb4c81abc76e186bba79aa5a67.tar.zst gsoc2013-evolution-3179eb7162b3f9eb4c81abc76e186bba79aa5a67.zip |
Fix this to not require NULL-termination of the array.
* camel-folder.c (camel_folder_free_deep): Fix this to not require
NULL-termination of the array.
svn path=/trunk/; revision=4560
Diffstat (limited to 'camel/camel-folder.c')
-rw-r--r-- | camel/camel-folder.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/camel/camel-folder.c b/camel/camel-folder.c index caac803ce8..047c814e5e 100644 --- a/camel/camel-folder.c +++ b/camel/camel-folder.c @@ -1241,6 +1241,9 @@ camel_folder_free_shallow (CamelFolder *folder, GPtrArray *array) void camel_folder_free_deep (CamelFolder *folder, GPtrArray *array) { - g_strfreev ((gchar **)array->pdata); - g_ptr_array_free (array, FALSE); + int i; + + for (i = 0; i < array->len; i++) + g_free (array->pdata[i]); + g_ptr_array_free (array, TRUE); } |