| 431 | |
| 432 | |
| 433 | void luaH_free (lua_State *L, Table *t) { |
| 434 | if (!isdummy(t)) |
| 435 | luaM_freearray(L, t->node, cast(size_t, sizenode(t))); |
| 436 | luaM_freearray(L, t->array, t->sizearray); |
| 437 | luaM_free(L, t); |
| 438 | } |
| 439 | |
| 440 | |
| 441 | static Node *getfreepos (Table *t) { |