summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Changes1
-rw-r--r--byterun/custom.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/Changes b/Changes
index 23c46902d..74da1ce62 100644
--- a/Changes
+++ b/Changes
@@ -159,6 +159,7 @@ Bug Fixes:
- PR#5620: invalid printing of type manifest (camlp4 revised syntax)
- PR#5643: issues with .cfi and .loc directives generated by ocamlopt -g
- PR#5661: fixes for the test suite
+- PR#5671: initialization of compare_ext field in caml_final_custom_operations()
- problem with printing of string literals in camlp4 (reported on caml-list)
- emacs mode: colorization of comments and strings now works correctly
diff --git a/byterun/custom.c b/byterun/custom.c
index b2d7b5206..5f6e7f9a0 100644
--- a/byterun/custom.c
+++ b/byterun/custom.c
@@ -83,6 +83,7 @@ struct custom_operations * caml_final_custom_operations(final_fun fn)
ops->hash = custom_hash_default;
ops->serialize = custom_serialize_default;
ops->deserialize = custom_deserialize_default;
+ ops->compare_ext = custom_compare_ext_default;
l = caml_stat_alloc(sizeof(struct custom_operations_list));
l->ops = ops;
l->next = custom_ops_final_table;