aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-04-02 18:09:51 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-04-02 18:09:51 -0300
commit65ac789565db4cbc018e8a28f3f2bc169a6d0be1 (patch)
tree6bb045e28e5ab446f37fc09eb6579e7717d1f442
parentcfc84c856d2441829c4b6c4b1766a01d4a462973 (diff)
downloadlua-65ac789565db4cbc018e8a28f3f2bc169a6d0be1.tar.gz
lua-65ac789565db4cbc018e8a28f3f2bc169a6d0be1.tar.bz2
lua-65ac789565db4cbc018e8a28f3f2bc169a6d0be1.zip
detail (comment)
-rw-r--r--ltable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltable.c b/ltable.c
index 014e9171..b21c6c89 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.c,v 2.107 2015/03/30 15:36:53 roberto Exp roberto $ 2** $Id: ltable.c,v 2.108 2015/03/30 19:51:00 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -369,7 +369,7 @@ void luaH_resize (lua_State *L, Table *t, unsigned int nasize,
369 } 369 }
370 } 370 }
371 if (!isdummy(nold)) 371 if (!isdummy(nold))
372 luaM_freearray(L, nold, cast(size_t, twoto(oldhsize))); /* free old array */ 372 luaM_freearray(L, nold, cast(size_t, twoto(oldhsize))); /* free old hash */
373} 373}
374 374
375 375