diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2019-04-25 08:07:42 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2019-04-25 08:07:42 (GMT) |
commit | 568c3624de786dd3240fbddea4f5035febe6ee01 (patch) | |
tree | 6dd9ff590e14a0a574b649579fa452163d051935 /src/H5Fint.c | |
parent | 4fbe80acc27bc0e84eec9880c3c4257802e5bae5 (diff) | |
download | hdf5-568c3624de786dd3240fbddea4f5035febe6ee01.zip hdf5-568c3624de786dd3240fbddea4f5035febe6ee01.tar.gz hdf5-568c3624de786dd3240fbddea4f5035febe6ee01.tar.bz2 |
Improvements to the H5Fis_accessible() and H5Fis_hdf5() tests
in tfile.c.
* General code tidying.
* Expanded tests to work with multi-file VFDs.
Diffstat (limited to 'src/H5Fint.c')
-rw-r--r-- | src/H5Fint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fint.c b/src/H5Fint.c index 5d03b3b..2e8771c 100644 --- a/src/H5Fint.c +++ b/src/H5Fint.c @@ -853,7 +853,7 @@ htri_t H5F__is_hdf5(const char *name, hid_t fapl_id) { H5FD_t *file = NULL; /* Low-level file struct */ - haddr_t sig_addr; /* Addess of hdf5 file signature */ + haddr_t sig_addr = HADDR_UNDEF; /* Addess of hdf5 file signature */ htri_t ret_value = FAIL; /* Return value */ FUNC_ENTER_PACKAGE |