3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 10:25:18 +00:00

setting ctx to null after close

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-07-26 14:59:10 -07:00
parent 2eea7709e0
commit 1d223b0403

View file

@ -4133,5 +4133,6 @@ public class Context implements AutoCloseable {
synchronized (creation_lock) {
Native.delContext(m_ctx);
}
m_ctx = null;
}
}