diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2019-01-07 20:03:22 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2019-01-07 20:03:22 (GMT) |
commit | 5b721a060e87092afc9956c39381aba370f37bb4 (patch) | |
tree | 4eab11ba2f591c4543ad9477119b0cca87e56541 /tools | |
parent | 463515f7db9b5dd32c6746488e18760525d33568 (diff) | |
download | hdf5-5b721a060e87092afc9956c39381aba370f37bb4.zip hdf5-5b721a060e87092afc9956c39381aba370f37bb4.tar.gz hdf5-5b721a060e87092afc9956c39381aba370f37bb4.tar.bz2 |
Removed previous change in table_list_add().
Diffstat (limited to 'tools')
-rw-r--r-- | tools/src/h5dump/h5dump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/src/h5dump/h5dump.c b/tools/src/h5dump/h5dump.c index 52158fb..b9e37e8 100644 --- a/tools/src/h5dump/h5dump.c +++ b/tools/src/h5dump/h5dump.c @@ -407,9 +407,9 @@ table_list_add(hid_t oid, unsigned long file_no) } if(init_objs(oid, &info, &table_list.tables[idx].group_table, &table_list.tables[idx].dset_table, &table_list.tables[idx].type_table) < 0) { - H5Idec_ref(oid); - table_list.nused--; - return -1; + H5Idec_ref(oid); + table_list.nused--; + return -1; } #ifdef H5DUMP_DEBUG |