summaryrefslogtreecommitdiff
path: root/lang_ext
diff options
context:
space:
mode:
Diffstat (limited to 'lang_ext')
-rw-r--r--lang_ext/lua/upb.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lang_ext/lua/upb.c b/lang_ext/lua/upb.c
index a16a187..a8165c7 100644
--- a/lang_ext/lua/upb.c
+++ b/lang_ext/lua/upb.c
@@ -187,7 +187,11 @@ static int lupb_symtab_lookup(lua_State *L) {
const char *name = luaL_checklstring(L, 2, &len);
upb_string namestr = UPB_STACK_STRING_LEN(name, len);
upb_def *def = upb_symtab_lookup(s->symtab, &namestr);
- lupb_def_getorcreate(L, def);
+ if (def) {
+ lupb_def_getorcreate(L, def);
+ } else {
+ lua_pushnil(L);
+ }
return 1;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback