From ab8b76bcd4d9c0c428532d76c44f234bbf7f04e2 Mon Sep 17 00:00:00 2001 From: LanPaHenDa <37185282+LanPaHenDa@users.noreply.github.com> Date: Thu, 21 Mar 2019 22:38:49 +0800 Subject: [PATCH] Update t_hash_int.cpp Bug in the hashtableWrite. fwrite the &node->data need to change to node->data --- modules/surface_matching/src/t_hash_int.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/surface_matching/src/t_hash_int.cpp b/modules/surface_matching/src/t_hash_int.cpp index 587c65336..83dffb3ad 100644 --- a/modules/surface_matching/src/t_hash_int.cpp +++ b/modules/surface_matching/src/t_hash_int.cpp @@ -292,7 +292,7 @@ int hashtableWrite(const hashtable_int * hashtbl, const size_t dataSize, FILE* f while (node) { fwrite(&node->key, sizeof(KeyType), 1, f); - fwrite(&node->data, dataSize, 1, f); + fwrite(node->data, dataSize, 1, f); node=node->next; } }