From 7c53380460df8ce0e9dfb5b639146fe0e95ec559 Mon Sep 17 00:00:00 2001 From: Michael Cahill Date: Mon, 22 Oct 2012 13:37:18 +1100 Subject: lint schema_list.c:70:4: error: 'table' may be used uninitialized in this function --- src/schema/schema_list.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/schema/schema_list.c b/src/schema/schema_list.c index 583236e914b..ddcdfdac947 100644 --- a/src/schema/schema_list.c +++ b/src/schema/schema_list.c @@ -59,6 +59,7 @@ __wt_schema_get_table(WT_SESSION_IMPL *session, WT_DECL_RET; WT_TABLE *table; + table = NULL; ret = __schema_find_table(session, name, namelen, &table); if (ret == WT_NOTFOUND) -- cgit v1.2.1