| 9612 | |
| 9613 | |
| 9614 | void luaH_free (lua_State *L, Table *t) { |
| 9615 | if (t->node != dummynode) |
| 9616 | luaM_freearray(L, t->node, sizenode(t), Node); |
| 9617 | luaM_freearray(L, t->array, t->sizearray, TValue); |
| 9618 | luaM_free(L, t); |
| 9619 | } |
| 9620 | |
| 9621 | |
| 9622 | static Node *getfreepos (Table *t) { |