summaryrefslogtreecommitdiffstats
path: root/tools/src/h5repack/h5repack_copy.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-11-08 17:27:22 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-11-08 17:27:22 (GMT)
commit3b9e13a1b819584c91bfaa134536345a1460f44f (patch)
treeec15921ace74f90c89c989d5e75a970c2c573874 /tools/src/h5repack/h5repack_copy.c
parent0a7424c7d0664b778be9d75db373793cb2f949c9 (diff)
downloadhdf5-3b9e13a1b819584c91bfaa134536345a1460f44f.zip
hdf5-3b9e13a1b819584c91bfaa134536345a1460f44f.tar.gz
hdf5-3b9e13a1b819584c91bfaa134536345a1460f44f.tar.bz2
TRILAB-82 fix coverity high-impact issues
Diffstat (limited to 'tools/src/h5repack/h5repack_copy.c')
-rw-r--r--tools/src/h5repack/h5repack_copy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/src/h5repack/h5repack_copy.c b/tools/src/h5repack/h5repack_copy.c
index b279cf9..0567269 100644
--- a/tools/src/h5repack/h5repack_copy.c
+++ b/tools/src/h5repack/h5repack_copy.c
@@ -1422,9 +1422,9 @@ copy_user_block(const char *infile, const char *outfile, hsize_t size)
} /* end while */
done:
- if (infid > 0)
+ if (infid >= 0)
HDclose(infid);
- if (outfid > 0)
+ if (outfid >= 0)
HDclose(outfid);
return ret_value;
@@ -1497,7 +1497,7 @@ print_user_block(const char *filename, hid_t fid)
}
done:
- if (fh > 0)
+ if (fh >= 0)
HDclose(fh);
return;