summaryrefslogtreecommitdiffstats
path: root/hl/tools
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-12-10 19:57:37 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-12-10 19:57:37 (GMT)
commit43a1371ffe5c912fe3f367c54d1c6c7d24e96a4e (patch)
treee0fe3763f0540c801a2866e409af1dbac03d410a /hl/tools
parentdf20cd88640e750bbb4b6165f8ab5a93d16265e7 (diff)
downloadhdf5-43a1371ffe5c912fe3f367c54d1c6c7d24e96a4e.zip
hdf5-43a1371ffe5c912fe3f367c54d1c6c7d24e96a4e.tar.gz
hdf5-43a1371ffe5c912fe3f367c54d1c6c7d24e96a4e.tar.bz2
Fix h5watch fault
Diffstat (limited to 'hl/tools')
-rw-r--r--hl/tools/h5watch/h5watch.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/hl/tools/h5watch/h5watch.c b/hl/tools/h5watch/h5watch.c
index ef0d5d6..59b6363 100644
--- a/hl/tools/h5watch/h5watch.c
+++ b/hl/tools/h5watch/h5watch.c
@@ -132,22 +132,23 @@ doprint(hid_t did, hsize_t *start, hsize_t *block, int rank)
int i; /* Local index variable */
herr_t ret_value = SUCCEED; /* Return value */
- HDmemset(&ctx, 0, sizeof(ctx));
-
/* Subsetting information for the tools library printing routines */
- ctx.sset->start.data = ss_start;
- ctx.sset->stride.data = ss_stride;
- ctx.sset->block.data = ss_block;
- ctx.sset->count.data = ss_count;
+ subset.start.data = ss_start;
+ subset.stride.data = ss_stride;
+ subset.block.data = ss_block;
+ subset.count.data = ss_count;
/* Initialize subsetting information */
for(i = 0; i < rank; i++) {
- ctx.sset->stride.data[i] = 1;
- ctx.sset->count.data[i] = 1;
- ctx.sset->start.data[i] = start[i];
- ctx.sset->block.data[i] = block[i];
+ subset.stride.data[i] = 1;
+ subset.count.data[i] = 1;
+ subset.start.data[i] = start[i];
+ subset.block.data[i] = block[i];
} /* end for */
+ HDmemset(&ctx, 0, sizeof(ctx));
+ ctx.sset = subset;
+
/* Set to all default values and then override */
HDmemset(&info, 0, sizeof info);