summaryrefslogtreecommitdiffstats
path: root/tools/src/misc
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-01-05 18:01:10 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-01-05 18:01:10 (GMT)
commitcdda9c0a6a673314e4aac9ed5f49b3f69e9ad6da (patch)
tree8c4a591eeb25964628cf433ec7e1e44a3f1372c3 /tools/src/misc
parente16bfa859c45291df18a4fc203c9f036d796d4f1 (diff)
downloadhdf5-cdda9c0a6a673314e4aac9ed5f49b3f69e9ad6da.zip
hdf5-cdda9c0a6a673314e4aac9ed5f49b3f69e9ad6da.tar.gz
hdf5-cdda9c0a6a673314e4aac9ed5f49b3f69e9ad6da.tar.bz2
Corrected return calls
Diffstat (limited to 'tools/src/misc')
-rw-r--r--tools/src/misc/h5clear.c13
-rw-r--r--tools/src/misc/h5mkgrp.c3
2 files changed, 6 insertions, 10 deletions
diff --git a/tools/src/misc/h5clear.c b/tools/src/misc/h5clear.c
index 89dd4bd..481c6db 100644
--- a/tools/src/misc/h5clear.c
+++ b/tools/src/misc/h5clear.c
@@ -44,7 +44,6 @@ leave(int ret)
{
h5tools_close();
HDexit(ret);
-
} /* leave() */
/*-------------------------------------------------------------------------
@@ -103,14 +102,14 @@ main (int argc, char *argv[])
/* Get a copy of the file access property list */
if((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0) {
error_msg("H5Pcreate\n");
- exit(EXIT_FAILURE);
+ leave(EXIT_FAILURE);
}
/* Set to clear the status_flags in the file's superblock */
/* This is a private property used by h5clear only */
if(H5Pset(fapl, H5F_ACS_CLEAR_STATUS_FLAGS_NAME, &clear) < 0) {
error_msg("H5Pset\n");
- exit(EXIT_FAILURE);
+ leave(EXIT_FAILURE);
}
/* Duplicate the file name */
@@ -119,21 +118,21 @@ main (int argc, char *argv[])
if((fid = h5tools_fopen(fname, H5F_ACC_RDWR, fapl, NULL, NULL, (size_t)0)) < 0) {
error_msg("h5tools_fopen\n");
HDfree(fname);
- exit(EXIT_FAILURE);
+ leave(EXIT_FAILURE);
}
HDfree(fname);
/* Close the file */
if(H5Fclose(fid) < 0) {
error_msg("H5Fclose\n");
- exit(EXIT_FAILURE);
+ leave(EXIT_FAILURE);
}
/* CLose the property list */
if(H5Pclose(fapl) < 0) {
error_msg("H5Pclose\n");
- exit(EXIT_FAILURE);
+ leave(EXIT_FAILURE);
}
- return EXIT_SUCCESS;
+ leave(h5tools_getstatus());
} /* main() */
diff --git a/tools/src/misc/h5mkgrp.c b/tools/src/misc/h5mkgrp.c
index ad2d306..aa6057f 100644
--- a/tools/src/misc/h5mkgrp.c
+++ b/tools/src/misc/h5mkgrp.c
@@ -328,9 +328,6 @@ main(int argc, const char *argv[])
leave(EXIT_FAILURE);
} /* end if */
- /* Shut down h5tools lib */
- h5tools_close();
-
leave(EXIT_SUCCESS);
} /* end main() */