mirror of
https://github.com/Z3Prover/z3
synced 2026-06-01 22:57:51 +00:00
Fix off-by-one vulnerabilities: use range-based for on goals; cache loop bound
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
093e227689
commit
dbd7cd7414
6 changed files with 4 additions and 222 deletions
|
|
@ -38,8 +38,7 @@ public:
|
|||
TRACE(goal, g->display(tout << "in\n"););
|
||||
|
||||
ptr_vector<expr> flas;
|
||||
const unsigned sz = g->size();
|
||||
for (unsigned i = 0; i < sz; ++i) flas.push_back(g->form(i));
|
||||
for (auto [f, dep, pr] : *g) flas.push_back(f);
|
||||
lackr lackr(m, m_p, m_st, flas, nullptr);
|
||||
|
||||
// mk result
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue