diff -u gtk+2.0-2.10.7/debian/changelog gtk+2.0-2.10.7/debian/changelog --- gtk+2.0-2.10.7/debian/changelog +++ gtk+2.0-2.10.7/debian/changelog @@ -1,3 +1,12 @@ +gtk+2.0 (2.10.7-0ubuntu3) feisty; urgency=low + + * debian/patches/010_gtknotebook.patch + - Patch from upstream CVS, this closes malone #79449 + - Patch description from CVS: (gtk_notebook_draw_focus): fix + potential crasher if cur_page is NULL. + + -- ville palo Wed, 17 Jan 2007 21:45:46 +0200 + gtk+2.0 (2.10.7-0ubuntu2) feisty; urgency=low * debian/patches/090_from_svn_fix_textview_window_crasher.patch: --- gtk+2.0-2.10.7.orig/debian/patches/010_gtknotebook.patch +++ gtk+2.0-2.10.7/debian/patches/010_gtknotebook.patch @@ -0,0 +1,13 @@ +--- gtk+-2.10.7/gtk/gtknotebook.c 2007-01-05 20:32:46.000000000 +0200 ++++ gtk+-2.10.7/gtk/gtknotebook.c 2007-01-17 20:27:36.000000000 +0200 +@@ -2969,8 +2969,8 @@ gtk_notebook_draw_focus (GtkWidget + GtkNotebook *notebook = GTK_NOTEBOOK (widget); + + if (GTK_WIDGET_HAS_FOCUS (widget) && GTK_WIDGET_DRAWABLE (widget) && +- notebook->cur_page->tab_label->window == event->window && +- notebook->show_tabs && notebook->cur_page) ++ notebook->show_tabs && notebook->cur_page && ++ notebook->cur_page->tab_label->window == event->window) + { + GtkNotebookPage *page; + GdkRectangle area;