From ec1f102019aaa451427228c4003866eee90276f0 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Fri, 31 Oct 2008 21:04:30 +0000 Subject: ** Fixes bug #558726 (patch by Frederic van Starbmann) 2008-10-31 Matthew Barnes ** Fixes bug #558726 (patch by Frederic van Starbmann) * mail/em-format-html.c (emfh_multipart_related_check): * plugins/mail-to-task/mail-to-task.c (do_mail_to_task): * plugins/plugin-manager/plugin-manager.c (eppm_enable_toggled): Fix several potential format string crashes. svn path=/trunk/; revision=36709 --- plugins/mail-to-task/mail-to-task.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/mail-to-task/mail-to-task.c') diff --git a/plugins/mail-to-task/mail-to-task.c b/plugins/mail-to-task/mail-to-task.c index 89075dfd28..2717bb29be 100644 --- a/plugins/mail-to-task/mail-to-task.c +++ b/plugins/mail-to-task/mail-to-task.c @@ -287,7 +287,7 @@ do_mail_to_task (AsyncData *data) e_notice (NULL, GTK_MESSAGE_ERROR, _("Cannot open calendar. %s"), err ? err->message : ""); } else if (!e_cal_is_read_only (client, &readonly, &err) || readonly) { if (err) - e_notice (NULL, GTK_MESSAGE_ERROR, err->message); + e_notice (NULL, GTK_MESSAGE_ERROR, "%s", err->message); else e_notice (NULL, GTK_MESSAGE_ERROR, _("Selected source is read only, thus cannot create task there. Select other source, please.")); } else { -- cgit v1.2.3