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/plugin-manager/ChangeLog | 7 +++++++ plugins/plugin-manager/plugin-manager.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'plugins/plugin-manager') diff --git a/plugins/plugin-manager/ChangeLog b/plugins/plugin-manager/ChangeLog index 1b3d52084a..45dd1105d6 100644 --- a/plugins/plugin-manager/ChangeLog +++ b/plugins/plugin-manager/ChangeLog @@ -1,3 +1,10 @@ +2008-10-31 Matthew Barnes + + ** Fixes part of bug #558726 (patch by Frederic van Starbmann) + + * plugin-manager.c (eppm_enable_toggled): + Fix a potential format string crash. + 2008-09-04 Sankar P License Changes diff --git a/plugins/plugin-manager/plugin-manager.c b/plugins/plugin-manager/plugin-manager.c index 4658291679..19af3eeb7e 100644 --- a/plugins/plugin-manager/plugin-manager.c +++ b/plugins/plugin-manager/plugin-manager.c @@ -196,7 +196,7 @@ eppm_enable_toggled (GtkCellRendererToggle *renderer, const char *path_string, M gtk_tree_model_get (m->model, &iter, COL_PLUGIN_DATA, &plugin, -1); e_plugin_enable (plugin, !plugin->enabled); - g_warning (plugin->name); + g_warning ("%s", plugin->name); gtk_list_store_set (GTK_LIST_STORE(m->model), &iter, COL_PLUGIN_ENABLED, plugin->enabled, -- cgit v1.2.3