3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00

Merge pull request #1975 from Bronsa/null_wrapped

Guard against null wrapped functions in OCaml API
This commit is contained in:
Nikolaj Bjorner 2018-11-27 10:44:20 -08:00 committed by GitHub
commit eea9b79035
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1536,6 +1536,11 @@ def mk_z3native_stubs_c(ml_src_dir, ml_output_dir): # C interface
i = i + 1
ml_wrapper.write(');\n')
if name in NULLWrapped:
ml_wrapper.write(' if (z3rv_m == NULL) {\n')
ml_wrapper.write(' caml_raise_with_string(*caml_named_value("Z3EXCEPTION"), "Object allocation failed");\n')
ml_wrapper.write(' }\n')
if release_caml_gc:
ml_wrapper.write('\n caml_acquire_runtime_system();\n')