Initialize the multiple return value map in lb_create_dummy_procedure

This commit is contained in:
gingerBill
2022-12-07 16:44:26 +00:00
parent a5bdb4a8e8
commit 1f8f94276e

View File

@@ -346,6 +346,7 @@ lbProcedure *lb_create_dummy_procedure(lbModule *m, String link_name, Type *type
p->blocks.allocator = a;
p->branch_blocks.allocator = a;
p->context_stack.allocator = a;
map_init(&p->tuple_fix_map, a, 0);
char *c_link_name = alloc_cstring(permanent_allocator(), p->name);