| 676 | |
| 677 | |
| 678 | void luaC_upvdeccount (lua_State *L, UpVal *uv) { |
| 679 | lua_assert(uv->refcount > 0); |
| 680 | uv->refcount--; |
| 681 | if (uv->refcount == 0 && !upisopen(uv)) |
| 682 | luaM_free(L, uv); |
| 683 | } |
| 684 | |
| 685 | |
| 686 | static void freeLclosure (lua_State *L, LClosure *cl) { |
no outgoing calls
no test coverage detected