[maemo-commits] [maemo-commits] r17232 - in projects/haf/trunk/gtk+: . gtk

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Mon Jan 19 11:57:05 EET 2009
Author: kris
Date: 2009-01-19 11:56:50 +0200 (Mon, 19 Jan 2009)
New Revision: 17232

Modified:
   projects/haf/trunk/gtk+/ChangeLog
   projects/haf/trunk/gtk+/gtk/gtktreeselection.c
Log:
2009-01-19  Kristian Rietveld  <kris at imendio.com>

	Fixes: NB#98272 - GtkTreeSelection: Conditional jump or move
	depends on uninitialised value(s)

	* gtk/gtktreeselection.c (tree_column_is_sensitive): initialize
	sensitive.



Modified: projects/haf/trunk/gtk+/ChangeLog
===================================================================
--- projects/haf/trunk/gtk+/ChangeLog	2009-01-19 00:53:37 UTC (rev 17231)
+++ projects/haf/trunk/gtk+/ChangeLog	2009-01-19 09:56:50 UTC (rev 17232)
@@ -1,3 +1,11 @@
+2009-01-19  Kristian Rietveld  <kris at imendio.com>
+
+	Fixes: NB#98272 - GtkTreeSelection: Conditional jump or move
+	depends on uninitialised value(s)
+
+	* gtk/gtktreeselection.c (tree_column_is_sensitive): initialize
+	sensitive.
+
 2009-01-14  Sven Herzberg  <sven at imendio.com>
 
 	Fixes: NB#89864 - RGBA support

Modified: projects/haf/trunk/gtk+/gtk/gtktreeselection.c
===================================================================
--- projects/haf/trunk/gtk+/gtk/gtktreeselection.c	2009-01-19 00:53:37 UTC (rev 17231)
+++ projects/haf/trunk/gtk+/gtk/gtktreeselection.c	2009-01-19 09:56:50 UTC (rev 17232)
@@ -1323,7 +1323,7 @@
 			  GtkTreeIter       *iter)
 {
   GList *cells, *list;
-  gboolean sensitive;
+  gboolean sensitive = TRUE;
   gboolean visible;
 
 #ifdef MAEMO_CHANGES


More information about the maemo-commits mailing list