summaryrefslogtreecommitdiffstats
path: root/tools/src/h5ls/h5ls.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-12-20 19:23:48 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-12-20 19:23:48 (GMT)
commit23f813026f06f3ed9aa9fea86df265950eb6770f (patch)
tree5af0d5405e3bc04425928c8023cc82a32536d4a9 /tools/src/h5ls/h5ls.c
parentd7c38eeee9e6148686dc72610f244974fdd88f10 (diff)
downloadhdf5-23f813026f06f3ed9aa9fea86df265950eb6770f.zip
hdf5-23f813026f06f3ed9aa9fea86df265950eb6770f.tar.gz
hdf5-23f813026f06f3ed9aa9fea86df265950eb6770f.tar.bz2
HDFFV-10976,-10980 Init obj_type before calling H5Rget_obj_type3
Diffstat (limited to 'tools/src/h5ls/h5ls.c')
-rw-r--r--tools/src/h5ls/h5ls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/src/h5ls/h5ls.c b/tools/src/h5ls/h5ls.c
index 6c21782..70af8cf 100644
--- a/tools/src/h5ls/h5ls.c
+++ b/tools/src/h5ls/h5ls.c
@@ -1313,7 +1313,7 @@ dump_reference(FILE *stream, const h5tool_format_t *info, h5tools_context_t *ctx
HDmemset(&buffer, 0, sizeof(h5tools_str_t));
for(i = 0; i < ndims; i++, datactx.cur_elmt++, elmt_counter++) {
- H5O_type_t obj_type; /* Object type */
+ H5O_type_t obj_type = -1; /* Object type */
H5R_type_t ref_type; /* Reference type */
H5TOOLS_DEBUG(H5E_tools_min_dbg_id_g, "reference loop:%d with curr_pos=%ld", i, curr_pos);