mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 10:23:47 +01:00
Fix possible implicit conversion of NULL to std::string
This commit is contained in:
@ -57,7 +57,9 @@ int script_error_handler(lua_State *L) {
|
|||||||
|
|
||||||
void script_error(lua_State *L)
|
void script_error(lua_State *L)
|
||||||
{
|
{
|
||||||
throw LuaError(NULL, lua_tostring(L, -1));
|
const char *s = lua_tostring(L, -1);
|
||||||
|
std::string str(s ? s : "");
|
||||||
|
throw LuaError(NULL, str);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Push the list of callbacks (a lua table).
|
// Push the list of callbacks (a lua table).
|
||||||
|
Reference in New Issue
Block a user