summaryrefslogtreecommitdiffstats
path: root/src/H5SM.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5SM.c')
-rwxr-xr-xsrc/H5SM.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5SM.c b/src/H5SM.c
index f923664..dc2ea5f 100755
--- a/src/H5SM.c
+++ b/src/H5SM.c
@@ -1592,6 +1592,7 @@ H5SM_message_encode(const H5F_t UNUSED *f, uint8_t *raw, const void *_nrecord)
FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5SM_message_encode)
/* Encode the SOHM's fields */
+ *raw++ = 0; /* The "location" of the message (will be replaced in following checkin) */
UINT32ENCODE(raw, message->hash);
UINT32ENCODE(raw, message->ref_count);
UINT64ENCODE(raw, message->fheap_id);
@@ -1621,6 +1622,7 @@ H5SM_message_decode(const H5F_t UNUSED *f, const uint8_t *raw, void *_nrecord)
FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5SM_message_decode)
/* Encode the SOHM's fields */
+ raw++; /* skip unused "location" field right now */
UINT32DECODE(raw, message->hash);
UINT32DECODE(raw, message->ref_count);
UINT64DECODE(raw, message->fheap_id);