3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-27 16:38:45 +00:00

more missing nullptr flexibility #5156

This commit is contained in:
Nikolaj Bjorner 2021-04-08 10:34:09 -07:00
parent b1f5933c7d
commit d91eac24b7
8 changed files with 20 additions and 10 deletions

View file

@ -55,7 +55,8 @@ extern "C" {
Z3_TRY;
LOG_Z3_params_dec_ref(c, p);
RESET_ERROR_CODE();
to_params(p)->dec_ref();
if (p)
to_params(p)->dec_ref();
Z3_CATCH;
}