Skip to content
Snippets Groups Projects
Commit 5323d800 authored by kwolekr's avatar kwolekr
Browse files

Fix possible implicit conversion of NULL to std::string

parent 98e4e2b3
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,9 @@ int script_error_handler(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).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment