From 9719d0f879eedb57752ef2ea449707da5f6fad0c Mon Sep 17 00:00:00 2001
From: Konstantin Osipov <kostja@tarantool.org>
Date: Tue, 26 Feb 2013 11:37:14 +0400
Subject: [PATCH] Fix a merge bug.

---
 src/box/box_lua.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/box/box_lua.m b/src/box/box_lua.m
index 70bebd56ea..240a491e6f 100644
--- a/src/box/box_lua.m
+++ b/src/box/box_lua.m
@@ -736,7 +736,7 @@ lbox_create_iterator(struct lua_State *L)
 	size_t allocated_size = palloc_allocated(fiber->gc_pool);
 
 	/* Create a new iterator. */
-	enum iterator_type type;
+	enum iterator_type type = ITER_ALL;
 	u32 field_count = 0;
 	void *key = NULL;
 	u32 key_size = 0;
-- 
GitLab