fix(runtime/object): missing free

This commit is contained in:
Leonardo de Moura 2018-05-22 16:50:07 -07:00
parent b2f3d3f456
commit fb00f9a780

View file

@ -166,7 +166,7 @@ inline void dealloc(object * o) {
switch (get_kind(o)) {
case object_kind::External: dealloc_external(o); break;
case object_kind::MPZ: dealloc_mpz(o); break;
default: break;
default: free(o); break;
}
}