summaryrefslogtreecommitdiffstats
path: root/src/H5VLpassthru.c
diff options
context:
space:
mode:
authorJordan Henderson <jhenderson@hdfgroup.org>2019-09-16 20:35:09 (GMT)
committerJordan Henderson <jhenderson@hdfgroup.org>2019-09-16 20:35:09 (GMT)
commitdb1022ef5dad4ee450ca092b8b471040f405bbcf (patch)
treec030308c89bfc612e20d852ab224b5491b6a107a /src/H5VLpassthru.c
parentc1c522f6ce8f6d7e44e6ea99860b19228f46952a (diff)
downloadhdf5-db1022ef5dad4ee450ca092b8b471040f405bbcf.zip
hdf5-db1022ef5dad4ee450ca092b8b471040f405bbcf.tar.gz
hdf5-db1022ef5dad4ee450ca092b8b471040f405bbcf.tar.bz2
Fix segfault after H5VL_loc_params_t fix merge
Diffstat (limited to 'src/H5VLpassthru.c')
-rw-r--r--src/H5VLpassthru.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5VLpassthru.c b/src/H5VLpassthru.c
index eecdac2..24070fa 100644
--- a/src/H5VLpassthru.c
+++ b/src/H5VLpassthru.c
@@ -2131,11 +2131,11 @@ H5VL_pass_through_link_create(H5VL_link_create_type_t create_type, void *obj,
/* Fix up the link target object for hard link creation */
if(H5VL_LINK_CREATE_HARD == create_type) {
void *cur_obj;
- H5VL_loc_params_t cur_params;
+ H5VL_loc_params_t *cur_params;
/* Retrieve the object & loc params for the link target */
cur_obj = va_arg(arguments, void *);
- cur_params = va_arg(arguments, H5VL_loc_params_t);
+ cur_params = va_arg(arguments, H5VL_loc_params_t *);
/* If it's a non-NULL pointer, find the 'under object' and re-set the property */
if(cur_obj) {