Add missing return on error in a few places

This commit is contained in:
buffet 2020-01-06 16:47:57 +00:00
parent 4d106fa639
commit 84d49083c7

View file

@ -95,12 +95,14 @@ kiwmi_keyboard_on_key_down_or_up_notify(
if (lua_pcall(L, 1, 1, 0)) { if (lua_pcall(L, 1, 1, 0)) {
wlr_log(WLR_ERROR, "%s", lua_tostring(L, -1)); wlr_log(WLR_ERROR, "%s", lua_tostring(L, -1));
lua_pop(L, 1); lua_pop(L, 1);
return;
} }
lua_setfield(L, -2, "keyboard"); lua_setfield(L, -2, "keyboard");
if (lua_pcall(L, 1, 1, 0)) { if (lua_pcall(L, 1, 1, 0)) {
wlr_log(WLR_ERROR, "%s", lua_tostring(L, -1)); wlr_log(WLR_ERROR, "%s", lua_tostring(L, -1));
lua_pop(L, 1); lua_pop(L, 1);
return;
} }
event->handled |= lua_toboolean(L, -1); event->handled |= lua_toboolean(L, -1);