| 372 | |
| 373 | |
| 374 | void luaH_free (lua_State *L, Table *t) { |
| 375 | if (t->node != dummynode) |
| 376 | luaM_freearray(L, t->node, sizenode(t), Node); |
| 377 | luaM_freearray(L, t->array, t->sizearray, TValue); |
| 378 | luaM_free(L, t); |
| 379 | } |
| 380 | |
| 381 | |
| 382 | static Node *getfreepos (Table *t) { |