| 117 | |
| 118 | |
| 119 | void luaE_freeCI (lua_State *L) { |
| 120 | CallInfo *ci = L->ci; |
| 121 | CallInfo *next = ci->next; |
| 122 | ci->next = NULL; |
| 123 | while ((ci = next) != NULL) { |
| 124 | next = ci->next; |
| 125 | luaM_free(L, ci); |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | |
| 130 | static void stack_init (lua_State *L1, lua_State *L) { |
no outgoing calls
no test coverage detected