aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2008-05-22 09:30:34 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2008-05-22 09:30:34 +0000
commit3fb5c4e8e8a1563ca47428482ea09d76624bb5e2 (patch)
tree3d783db722279ff107f660ea1fecf7cf9fc102b1 /src
parent12a650bbb33ae0879c1b472814433cfa2a02547b (diff)
fixed a crash.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2000 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src')
-rw-r--r--src/summaryview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/summaryview.c b/src/summaryview.c
index 31e7d1f5..2d222993 100644
--- a/src/summaryview.c
+++ b/src/summaryview.c
@@ -5667,7 +5667,7 @@ static gboolean summary_display_msg_idle_func(gpointer data)
if (path) {
gtk_tree_model_get_iter(GTK_TREE_MODEL(summaryview->store),
&iter, path);
- g_free(path);
+ gtk_tree_path_free(path);
summary_display_msg(summaryview, &iter);
}