3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

fix null pointer dereference

This commit is contained in:
Murphy Berzish 2018-01-19 14:56:06 -05:00
parent a9fda81d03
commit 2065ea88ee

View file

@ -10372,7 +10372,9 @@ namespace smt {
}
}
} // foreach(entry in intersect_constraints)
aut_inter->compress();
if (aut_inter != NULL) {
aut_inter->compress();
}
TRACE("str", tout << "intersected " << used_intersect_constraints.size() << " constraints" << std::endl;);
expr_ref_vector conflict_terms(m);