From 6389da6f94150d54616db7c16f370659a8512412 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 2 Jul 2002 22:35:18 +0000 Subject: Increase the size of the escapped mlist buffer, we can't assume that there 2002-07-02 Jeffrey Stedfast * folder-browser.c (on_right_click): Increase the size of the escapped mlist buffer, we can't assume that there can only ever be a single '_' in the mlist name afaik. (filter_type_uid): Ugh, we need to copy the fdata->source here. svn path=/trunk/; revision=17354 --- mail/ChangeLog | 1 + mail/folder-browser.c | 1 + 2 files changed, 2 insertions(+) (limited to 'mail') diff --git a/mail/ChangeLog b/mail/ChangeLog index 02cd1ba39b..8c1afb2011 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -3,6 +3,7 @@ * folder-browser.c (on_right_click): Increase the size of the escapped mlist buffer, we can't assume that there can only ever be a single '_' in the mlist name afaik. + (filter_type_uid): Ugh, we need to copy the fdata->source here. Fixes bug #27263. diff --git a/mail/folder-browser.c b/mail/folder-browser.c index aa0ff3144f..03a7190aa3 100644 --- a/mail/folder-browser.c +++ b/mail/folder-browser.c @@ -1444,6 +1444,7 @@ filter_type_uid(struct _filter_data *fdata, int type) /* sigh, we need to copy this because the menu will free the one we got passed in */ data = g_malloc0(sizeof(*data)); data->type = type; + data->source = fdata->source; mail_get_message(fdata->folder, fdata->uid, filter_type_got_message, data, mail_thread_new); } -- cgit