summaryrefslogtreecommitdiffstats
path: root/src/H5Dint.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r--src/H5Dint.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c
index 6d095aa..3ad6c93 100644
--- a/src/H5Dint.c
+++ b/src/H5Dint.c
@@ -809,12 +809,15 @@ H5D__calculate_minimum_header_size( \
NULL);
#else
{
- char tmp[1] = "\0";
+ /* message pointer "tmp" is unused by raw get function, however, a null
+ * pointer is intercepted by an assert in H5O_msg_size_oh().
+ */
+ char tmp[1] = "";
ret_value += H5O_msg_size_oh(
file,
ohdr,
H5O_CONT_ID,
- tmp, /* NULL, */ /* UNUSED? */ /*intercepted by assert before passed through */
+ tmp,
0);
}
#endif