aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2008-04-08 09:12:15 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2008-04-08 09:12:15 +0000
commit520c0a9f8a3fc4c27da5a30a416f414e75c57271 (patch)
tree716a37ed1a4fb1a43b1740c96d15d150aa44b139 /src
parent5c7916a38a871b3c73762ea776c9f94ed7695d82 (diff)
fixed leaks of GSList.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1972 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src')
-rw-r--r--src/compose.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/compose.c b/src/compose.c
index 58657800..af0e73d5 100644
--- a/src/compose.c
+++ b/src/compose.c
@@ -3087,6 +3087,7 @@ static gboolean compose_check_recipients(Compose *compose)
(gchar *)cur->data, -1);
}
slist_free_strings(to_list);
+ g_slist_free(to_list);
}
}
if (compose->use_cc) {
@@ -3103,6 +3104,7 @@ static gboolean compose_check_recipients(Compose *compose)
(gchar *)cur->data, -1);
}
slist_free_strings(to_list);
+ g_slist_free(to_list);
}
}
if (compose->use_bcc) {
@@ -3119,6 +3121,7 @@ static gboolean compose_check_recipients(Compose *compose)
(gchar *)cur->data, -1);
}
slist_free_strings(to_list);
+ g_slist_free(to_list);
}
}