From cdda9c0a6a673314e4aac9ed5f49b3f69e9ad6da Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 5 Jan 2017 12:01:10 -0600 Subject: Corrected return calls --- tools/src/misc/h5clear.c | 13 ++++++------- tools/src/misc/h5mkgrp.c | 3 --- 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() */ -- cgit v0.12