| 391 | |
| 392 | |
| 393 | static void freehash (lua_State *L, Table *t) { |
| 394 | if (!isdummy(t)) { |
| 395 | /* get pointer to the beginning of Node array */ |
| 396 | char *arr = cast_charp(t->node) - extraLastfree(t); |
| 397 | luaM_freearray(L, arr, sizehash(t)); |
| 398 | } |
| 399 | } |
| 400 | |
| 401 | |
| 402 | /* |
no test coverage detected