Skip to content

Commit

Permalink
fix a couple more uninitialized fields (#1314)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Oct 8, 2012
1 parent eb48ce7 commit 6111987
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/jltypes.c
Original file line number Diff line number Diff line change
Expand Up @@ -2276,6 +2276,8 @@ void jl_init_types(void)
jl_tag_kind->fptr = jl_f_no_function;
jl_tag_kind->env = (jl_value_t*)jl_null;
jl_tag_kind->linfo = NULL;
jl_tag_kind->ctor_factory = NULL;
jl_tag_kind->instance = NULL;
jl_tag_kind->uid = jl_assign_type_uid();

jl_struct_kind->name = jl_new_typename(jl_symbol("CompositeKind"));
Expand Down

0 comments on commit 6111987

Please sign in to comment.