Merge pull request #1940 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop

* commit '8a2a500fef227e4f813f0059b365869268354048':
  Fix missing option and incorrect close
This commit is contained in:
Allen Byrne
2019-09-24 16:12:51 -05:00

View File

@@ -173,7 +173,7 @@ struct handler_t {
char **obj;
};
static const char *s_opts ="Aa:Ddm:EFfhGgl:sSTO:Vw:";
static const char *s_opts ="Aa:Ddm:EFfhGgl:sSTO:Vw:H:";
/* e.g. "filemetadata" has to precede "file"; "groupmetadata" has to precede "group" etc. */
static struct long_options l_opts[] = {
{"help", no_arg, 'h'},
@@ -2014,7 +2014,7 @@ done:
iter_free(&iter);
if (fapl_id != H5P_DEFAULT) {
if (0 < H5Pclose(fapl_id)) {
if (H5Pclose(fapl_id) < 0) {
error_msg("unable to close fapl entry\n");
h5tools_setstatus(EXIT_FAILURE);
}