diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/text.c | 5 |
2 files changed, 10 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2007-05-15 Lucas Rocha <lucasr@gnome.org> + * src/text.c (zenity_text_dialog_response): fix seg fault when + outputing files with special printf format strings (Fixes + bug #405006). Patch from Mariano Suárez-Alvarez. + +2007-05-15 Lucas Rocha <lucasr@gnome.org> + * src/tree.c (zenity_tree_dialog_toggle_get_selected): fix index handling for --print-column (Fixes bug #420396). @@ -159,9 +159,12 @@ zenity_text_dialog_response (GtkWidget *widget, int response, gpointer data) case GTK_RESPONSE_CLOSE: if (zen_text_data->editable) { GtkTextIter start, end; + gchar *text; gtk_text_buffer_get_bounds (zen_text_data->buffer, &start, &end); - g_print (gtk_text_buffer_get_text (zen_text_data->buffer, &start, &end, 0)); + text = gtk_text_buffer_get_text (zen_text_data->buffer, &start, &end, 0); + g_print ("%s", text); + g_free (text); } zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK); break; |