diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2017-09-23 16:17:47 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2017-09-23 16:17:47 (GMT) |
commit | 8880ec672eeb8f57c023938074d1336dfc82e2ed (patch) | |
tree | e33165e0428a7e4e9d35952ef9cecd9331b111ee /tools/lib | |
parent | b5446a9c638b5a95b8dfe132f646aa4358d2b539 (diff) | |
download | hdf5-8880ec672eeb8f57c023938074d1336dfc82e2ed.zip hdf5-8880ec672eeb8f57c023938074d1336dfc82e2ed.tar.gz hdf5-8880ec672eeb8f57c023938074d1336dfc82e2ed.tar.bz2 |
Style cleanups and misc. bugfixes discovered during full SWMR development.
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/h5tools_ref.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/lib/h5tools_ref.c b/tools/lib/h5tools_ref.c index 6153f0c..d6e5f01 100644 --- a/tools/lib/h5tools_ref.c +++ b/tools/lib/h5tools_ref.c @@ -166,7 +166,8 @@ haddr_t ref_path_table_lookup(const char *thepath) { H5O_info_t oi; - if((HDstrlen(thepath) == 0) || (thepath == NULL)) + + if((thepath == NULL) || (HDstrlen(thepath) == 0)) return HADDR_UNDEF; /* Allow lookups on the root group, even though it doesn't have any link info */ if(HDstrcmp(thepath, "/")) { |