diff -u vte-0.16.0/debian/changelog vte-0.16.0/debian/changelog --- vte-0.16.0/debian/changelog +++ vte-0.16.0/debian/changelog @@ -1,3 +1,12 @@ +vte (1:0.16.0-0ubuntu3) feisty; urgency=low + + * debian/patches/95_segfault_with_unicode_input.patch: + - Fix segfault when typing an Unicode character with Ctrl-Shift-Unnnn. + Thanks to Chris Wilson for the patch, which was downloaded from + http://bugzilla.gnome.org/show_bug.cgi?id=418588 (LP: #89524) + + -- Johan Kiviniemi Thu, 15 Mar 2007 19:01:38 +0200 + vte (1:0.16.0-0ubuntu2) feisty; urgency=low * debian/patches/70_fix_transparency_bug.patch: only in patch2: unchanged: --- vte-0.16.0.orig/debian/patches/95_segfault_with_unicode_input.patch +++ vte-0.16.0/debian/patches/95_segfault_with_unicode_input.patch @@ -0,0 +1,22 @@ +diff -Nur vte-0.16.0/src/vte.c vte-0.16.0.new/src/vte.c +--- vte-0.16.0/src/vte.c 2007-03-15 19:00:44.000000000 +0200 ++++ vte-0.16.0.new/src/vte.c 2007-03-15 19:00:51.000000000 +0200 +@@ -10103,18 +10103,6 @@ + FALSE, + TRUE, + width, height); +- } else +- if (preedit_cursor == len) { +- /* Empty cursor at the end. */ +- vte_terminal_draw_cells(terminal, +- &items[len], 1, +- back, fore, TRUE, TRUE, +- FALSE, +- FALSE, +- FALSE, +- FALSE, +- FALSE, +- width, height); + } + g_free(items); + }