| 3057 | } |
| 3058 | |
| 3059 | static int process_src(Lua L, const char *src, char **err) |
| 3060 | { |
| 3061 | int rc; |
| 3062 | if ((rc = luaL_dostring(L, src)) != 0) { |
| 3063 | *err = strdup(lua_tostring(L, -1)); |
| 3064 | return -1; |
| 3065 | } |
| 3066 | lua_settop(L, 0); |
| 3067 | return 0; |
| 3068 | } |
| 3069 | |
| 3070 | static void drop_temp_tables(SP sp) |
| 3071 | { |
no test coverage detected