objexcept: Fix a case of initialized object field.
This commit is contained in:
parent
c203324e6c
commit
60a0d3f1db
|
@ -53,6 +53,7 @@ STATIC mp_obj_t exception_call(mp_obj_t self_in, uint n_args, uint n_kw, const m
|
||||||
|
|
||||||
mp_obj_exception_t *o = m_new_obj_var(mp_obj_exception_t, mp_obj_t, n_args);
|
mp_obj_exception_t *o = m_new_obj_var(mp_obj_exception_t, mp_obj_t, n_args);
|
||||||
o->base.type = &exception_type;
|
o->base.type = &exception_type;
|
||||||
|
o->traceback = MP_OBJ_NULL;
|
||||||
o->id = base->id;
|
o->id = base->id;
|
||||||
o->msg = NULL;
|
o->msg = NULL;
|
||||||
o->args.len = n_args;
|
o->args.len = n_args;
|
||||||
|
|
Loading…
Reference in New Issue