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:
commit
eea9b79035
|
@ -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')
|
||||
|
||||
|
|
Loading…
Reference in a new issue