3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 20:38:43 +00:00

Bugfix for incorrect order of operations.

This commit is contained in:
George Karpenkov 2016-06-12 20:39:54 +02:00
parent 495ef0f055
commit 5657399d55

View file

@ -29,8 +29,8 @@ public abstract class Z3Object {
Z3Object(Context ctx, long obj) {
m_ctx = ctx;
checkNativeObject(obj);
incRef(obj);
m_n_obj = obj;
incRef(obj);
}
/**