summaryrefslogtreecommitdiffstats
path: root/byterun/custom.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2012-07-06 16:45:33 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2012-07-06 16:45:33 +0000
commit1c7f208fbb857c359e75088ad430dbf588c29dea (patch)
treebdff72548188247f95ac03bd0b9eca74e019b142 /byterun/custom.c
parent6d308ad574a7fb53175c4b0cf3950b52ff816eb1 (diff)
PR#5671: initialization of compare_ext field in caml_final_custom_operations()
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12659 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/custom.c')
-rw-r--r--byterun/custom.c1
1 files changed, 1 insertions, 0 deletions
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;