+2008-10-31 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes part of bug #558727 (patch by Frederic van Starbmann)
+
+ * libebackend/e-data-server-module (e_data_server_module_load):
+ Fix some potential string format crashes.
+
2008-10-01 Suman Manjunath <msuman@novell.com>
** Fix for bug #554540
+2008-10-31 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes part of bug #558727 (patch by Frederic van Starbmann)
+
+ * backends/ldap/e-book-backend-ldap.c (get_ldap_library_info):
+ Fix a potential string format crash.
+
2008-10-17 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #364542
/* yuck. we have to free these? */
for (i = 0; info.ldapai_extensions[i]; i++) {
char *extension = info.ldapai_extensions[i];
- g_message (extension);
+ g_message ("%s", extension);
ldap_memfree (extension);
}
ldap_memfree (info.ldapai_extensions);
+2008-10-31 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes part of bug #558727 (patch by Frederic van Starbmann)
+
+ * camel-vtrash-folder.c (vtrash_append_message),
+ (vtrash_transfer_messages_to):
+ Fix some potential string format crashes.
+
2008-10-31 Sankar P <psankar@novell.com>
** Fix for bnc bugs #440502, #209514, #434958, #434946,
const CamelMessageInfo *info, char **appended_uid,
CamelException *ex)
{
- camel_exception_setv(ex, CAMEL_EXCEPTION_SYSTEM,
+ camel_exception_setv(ex, CAMEL_EXCEPTION_SYSTEM, "%s",
_(vdata[((CamelVTrashFolder *)folder)->type].error_copy));
}
if (CAMEL_IS_VTRASH_FOLDER (dest)) {
/* Copy to trash is meaningless. */
if (!delete_originals) {
- camel_exception_setv(ex, CAMEL_EXCEPTION_SYSTEM,
+ camel_exception_setv(ex, CAMEL_EXCEPTION_SYSTEM, "%s",
_(vdata[((CamelVTrashFolder *)dest)->type].error_copy));
return;
}
module->library = g_module_open (module->path, G_MODULE_BIND_LAZY);
if (!module->library) {
- g_warning (g_module_error ());
+ g_warning ("%s", g_module_error ());
return FALSE;
}
"eds_module_list_types",
(gpointer *)&module->list_types)) {
- g_warning (g_module_error ());
+ g_warning ("%s", g_module_error ());
g_module_close (module->library);
return FALSE;
+2008-10-31 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes part of bug #558727 (crash by Frederic van Starbmann)
+
+ * create-account.c (add_account):
+ Fix a potential string format crash.
+
2008-10-31 Sankar P <psankar@novell.com>
** Fix for bnc bugs #440502, #209514, #434958, #434946,
source_list = e_source_list_new_for_gconf (conf_client, conf_key);
- group_name = g_strdup_printf (hostname);
+ group_name = g_strdup (hostname);
group = e_source_group_new (group_name, "groupwise://");
e_source_list_add_group (source_list, group, -1);