diff options
-rw-r--r-- | ltable.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||