mirror of
https://github.com/Z3Prover/z3
synced 2025-04-20 07:36:38 +00:00
fix null pointer dereference
This commit is contained in:
parent
a9fda81d03
commit
2065ea88ee
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue