Skip to content

Commit

Permalink
Fix LuaJIT exception wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
kahrl committed Aug 23, 2014
1 parent f33d316 commit 3e267a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/script/common/c_internal.cpp
Expand Up @@ -64,8 +64,10 @@ int script_exception_wrapper(lua_State *L, lua_CFunction f)
return f(L); // Call wrapped function and return result.
} catch (const char *s) { // Catch and convert exceptions.
lua_pushstring(L, s);
} catch (LuaError& e) {
} catch (std::exception& e) {
lua_pushstring(L, e.what());
} catch (...) {
lua_pushliteral(L, "caught (...)");
}
return lua_error(L); // Rethrow as a Lua error.
}
Expand Down

0 comments on commit 3e267a6

Please sign in to comment.