aboutsummaryrefslogtreecommitdiff
path: root/src/addressbook.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-10-27 08:44:58 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-10-27 08:44:58 +0000
commit24a106a9b626a3dfce2283f162a96383ec9a47ac (patch)
tree18d777d3f3d416076c96167ded3788670b2b6eb3 /src/addressbook.c
parent343c25f80f52c1465c19d39deb190ea8291542e8 (diff)
addressbook_move_nodes_up(): init variables.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2298 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/addressbook.c')
-rw-r--r--src/addressbook.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/addressbook.c b/src/addressbook.c
index cca8b841..67e1ce56 100644
--- a/src/addressbook.c
+++ b/src/addressbook.c
@@ -2090,9 +2090,9 @@ static void addressbook_move_nodes_recursive(GtkTreeIter *iter,
valid = gtk_tree_model_iter_children(model, &child, iter);
while (valid) {
gchar *name = NULL;
- AddressObject *obj;
- GdkPixbuf *pixbuf;
- GdkPixbuf *pixbuf_open;
+ AddressObject *obj = NULL;
+ GdkPixbuf *pixbuf = NULL;
+ GdkPixbuf *pixbuf_open = NULL;
gtk_tree_model_get(model, &child, COL_FOLDER_NAME, &name,
COL_OBJ, &obj, COL_PIXBUF, &pixbuf,