aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-browser.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-07-03 06:35:18 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-07-03 06:35:18 +0800
commit6389da6f94150d54616db7c16f370659a8512412 (patch)
tree620f156d03081e65aa9b847ac98df0ad3c3a3adf /mail/folder-browser.c
parent1b0d0e234ea94813ef3700703adfb73c6a621dfe (diff)
downloadgsoc2013-evolution-6389da6f94150d54616db7c16f370659a8512412.tar
gsoc2013-evolution-6389da6f94150d54616db7c16f370659a8512412.tar.gz
gsoc2013-evolution-6389da6f94150d54616db7c16f370659a8512412.tar.bz2
gsoc2013-evolution-6389da6f94150d54616db7c16f370659a8512412.tar.lz
gsoc2013-evolution-6389da6f94150d54616db7c16f370659a8512412.tar.xz
gsoc2013-evolution-6389da6f94150d54616db7c16f370659a8512412.tar.zst
gsoc2013-evolution-6389da6f94150d54616db7c16f370659a8512412.zip
Increase the size of the escapped mlist buffer, we can't assume that there
2002-07-02 Jeffrey Stedfast <fejj@ximian.com> * 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
Diffstat (limited to 'mail/folder-browser.c')
-rw-r--r--mail/folder-browser.c1
1 files changed, 1 insertions, 0 deletions
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);
}