| 35 | } |
| 36 | |
| 37 | extern "C" int dm_luaL_error_asan(lua_State* L, const char* fmt, ...) |
| 38 | { |
| 39 | va_list argp; |
| 40 | va_start(argp, fmt); |
| 41 | luaL_where(L, 1); |
| 42 | lua_pushvfstring(L, fmt, argp); |
| 43 | va_end(argp); |
| 44 | lua_concat(L, 2); |
| 45 | return dm_lua_error_asan(L); |
| 46 | } |
| 47 | #endif |
nothing calls this directly
no test coverage detected