[nautilus-actions] NABoxed: fix uninitialized variable value



commit 57b614ebfd41195a53ba73c2737ec5dda3fa57ee
Author: Pierre Wieser <pwieser trychlos org>
Date:   Fri Jan 14 20:36:30 2011 +0100

    NABoxed: fix uninitialized variable value

 src/core/na-boxed.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/core/na-boxed.c b/src/core/na-boxed.c
index d97f056..a20b58b 100644
--- a/src/core/na-boxed.c
+++ b/src/core/na-boxed.c
@@ -859,7 +859,7 @@ static int
 uint_list_compare( const NABoxed *a, const NABoxed *b )
 {
 	GList *ia, *ib;
-	gboolean diff;
+	gboolean diff = FALSE;
 
 	guint na = g_list_length( a->u.uint_list );
 	guint nb = g_list_length( b->u.uint_list );



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]