summaryrefslogtreecommitdiffstats
path: root/java/src/jni/h5dImp.c
diff options
context:
space:
mode:
authorJordan Henderson <jhenderson@hdfgroup.org>2019-02-22 04:28:17 (GMT)
committerJordan Henderson <jhenderson@hdfgroup.org>2019-02-22 04:39:57 (GMT)
commit8a4371f69ae07619fa9561431b9ee9df9d5b3e47 (patch)
tree9c8ae50a21666f8b597656de2ac9f8af31cffeff /java/src/jni/h5dImp.c
parent342cad2a3d9a7df02be37fa258b9f577c7e7ee88 (diff)
downloadhdf5-8a4371f69ae07619fa9561431b9ee9df9d5b3e47.zip
hdf5-8a4371f69ae07619fa9561431b9ee9df9d5b3e47.tar.gz
hdf5-8a4371f69ae07619fa9561431b9ee9df9d5b3e47.tar.bz2
Minor fix in h5str_sprintf for NULL region references
Diffstat (limited to 'java/src/jni/h5dImp.c')
-rw-r--r--java/src/jni/h5dImp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/jni/h5dImp.c b/java/src/jni/h5dImp.c
index 92a3723..d46773a 100644
--- a/java/src/jni/h5dImp.c
+++ b/java/src/jni/h5dImp.c
@@ -1633,7 +1633,7 @@ Java_hdf_hdf5lib_H5_H5Dread_1reg_1ref
H5_BAD_ARGUMENT_ERROR(ENVONLY, "H5Dread_reg_ref: buf length < 0");
}
- if (NULL == (ref_data = (hdset_reg_ref_t *) HDmalloc((size_t)n * sizeof(hdset_reg_ref_t))))
+ if (NULL == (ref_data = (hdset_reg_ref_t *) HDcalloc(1, (size_t)n * sizeof(hdset_reg_ref_t))))
H5_JNI_FATAL_ERROR(ENVONLY, "H5Dread_reg_ref: failed to allocate read buffer");
if ((status = H5Dread((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, xfer_plist_id, ref_data)) < 0)