diff options
author | Lucas Rocha <lucasr@gnome.org> | 2007-05-14 22:13:59 +0000 |
---|---|---|
committer | Lucas Almeida Rocha <lucasr@src.gnome.org> | 2007-05-14 22:13:59 +0000 |
commit | b9cbcc8d0ba9ed63920ba0b7bbe1bc3fa553aeb5 (patch) | |
tree | d848ad3454bf310136bce35bd7ac5d989980ddf6 /src/text.c | |
parent | a705262d816a7f2d9bdd5405f6c077b690219cef (diff) | |
download | zenity-b9cbcc8d0ba9ed63920ba0b7bbe1bc3fa553aeb5.tar.gz |
fix seg fault when outputing files with special printf format strings
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.
svn path=/trunk/; revision=1212
Diffstat (limited to 'src/text.c')
-rw-r--r-- | src/text.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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; |