Added a few missing __gc metamethods.

pull/13171/head
Josh Haberman 8 years ago
parent 949aeee3f1
commit ba4e23f170
  1. 1
      upb/bindings/lua/def.c
  2. 7
      upb/bindings/lua/msg.c

@ -720,6 +720,7 @@ static const struct luaL_Reg lupb_oneofdef_m[] = {
};
static const struct luaL_Reg lupb_oneofdef_mm[] = {
{"__gc", lupb_refcounted_gc},
{"__len", lupb_oneofdef_len},
{NULL, NULL}
};

@ -950,6 +950,12 @@ int lupb_msg_pushref(lua_State *L, int msgclass, void *msg) {
return 1;
}
static int lupb_msg_gc(lua_State *L) {
lupb_msg *lmsg = lupb_msg_check(L, 1);
upb_msg_uninit(lmsg->msg, lmsg->lmsgclass->layout);
return 0;
}
/* lupb_msg Public API */
/**
@ -1053,6 +1059,7 @@ static int lupb_msg_newindex(lua_State *L) {
}
static const struct luaL_Reg lupb_msg_mm[] = {
{"__gc", lupb_msg_gc},
{"__index", lupb_msg_index},
{"__newindex", lupb_msg_newindex},
{NULL, NULL}

Loading…
Cancel
Save