From fb6796ba06e5cfc6040cddec90508a379a3abd50 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 26 Dec 2014 12:43:45 -0200 Subject: removed useless initializations --- lapi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lapi.c') diff --git a/lapi.c b/lapi.c index efa9a5a4..c2ef6019 100644 --- a/lapi.c +++ b/lapi.c @@ -1,5 +1,5 @@ /* -** $Id: lapi.c,v 2.242 2014/11/02 19:19:04 roberto Exp roberto $ +** $Id: lapi.c,v 2.243 2014/11/12 13:28:54 roberto Exp roberto $ ** Lua API ** See Copyright Notice in lua.h */ @@ -676,7 +676,7 @@ LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { LUA_API int lua_getmetatable (lua_State *L, int objindex) { const TValue *obj; - Table *mt = NULL; + Table *mt; int res = 0; lua_lock(L); obj = index2addr(L, objindex); -- cgit v1.2.3-55-g6feb