GNOME Bugzilla – Bug 341061
Memory corruption with string values containing '%'
Last modified: 2006-12-27 18:30:44 UTC
Fixed by this patch: Index: libgda/gda-query.c =================================================================== --- libgda/gda-query.c (revision 2748) +++ libgda/gda-query.c (working copy) @@ -5321,7 +5321,7 @@ g_string_append (sql, ", "); } - g_string_append_printf (sql, (gchar *) list->data); + g_string_append_printf (sql, "%s", (gchar *) list->data); list = g_slist_next (list); }
Committed to HEAD. Many thanks. Please do patch the ChangeLog in future, and _attach_ the patch.