diff options
author | kmu <kmu@hdfgroup.org> | 2019-12-09 20:08:47 (GMT) |
---|---|---|
committer | kmu <kmu@hdfgroup.org> | 2019-12-09 20:08:47 (GMT) |
commit | f2614c904244cca043bf8fc9f94f566fa43c6e28 (patch) | |
tree | ada7f0b930a2cc50d7832340d46e8954be0b5513 /tools/lib | |
parent | f22e258586009b59cebdde931620c9d7379db6cd (diff) | |
download | hdf5-f2614c904244cca043bf8fc9f94f566fa43c6e28.zip hdf5-f2614c904244cca043bf8fc9f94f566fa43c6e28.tar.gz hdf5-f2614c904244cca043bf8fc9f94f566fa43c6e28.tar.bz2 |
more fix and address comments
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/h5diff.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/lib/h5diff.c b/tools/lib/h5diff.c index c2153e5..03d7941 100644 --- a/tools/lib/h5diff.c +++ b/tools/lib/h5diff.c @@ -274,14 +274,13 @@ build_match_list (const char *objname1, trav_info_t *info1, const char *objname2 int cmp; trav_table_t *table = NULL; size_t idx; - int ret_value = 0; h5difftrace("build_match_list start\n"); /* init */ trav_table_init(&table); if (table == NULL) { H5TOOLS_INFO(H5E_tools_min_id_g, "Cannot create traverse table"); - HGOTO_DONE(-1); + goto done; } /* * This is necessary for the case that given objects are group and |