From d6445f8abfa78c0a9c8680a3ba7422d331391f8f Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Fri, 7 Nov 2008 22:04:53 +0000 Subject: Merge revisions 36685:36729 from trunk. svn path=/branches/kill-bonobo/; revision=36763 --- 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