mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
Fix memory leak in bv2fpa_converter
This commit is contained in:
parent
2308d8af09
commit
4faaff5b76
|
@ -474,6 +474,8 @@ void bv2fpa_converter::convert_uf2bvuf(model_core * mc, model_core * target_mode
|
|||
func_interp *fi = convert_func_interp(mc, f, f_uf);
|
||||
if (fi->num_entries() > 0 || fi->get_else() != nullptr)
|
||||
target_model->register_decl(f, fi);
|
||||
else
|
||||
dealloc(fi);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue