diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2018-01-22 23:40:44 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2018-01-22 23:40:44 (GMT) |
commit | 8427eefafe7af83dbc133975c3ac2368cf1b08d6 (patch) | |
tree | 8454c8fefd1cc72fcb7759a5bf59a82e5c62e84c /src/H5Fsuper.c | |
parent | f122d6f27f85245f2f559c85064eabf91a631b27 (diff) | |
download | hdf5-8427eefafe7af83dbc133975c3ac2368cf1b08d6.zip hdf5-8427eefafe7af83dbc133975c3ac2368cf1b08d6.tar.gz hdf5-8427eefafe7af83dbc133975c3ac2368cf1b08d6.tar.bz2 |
Fix bounds check for the generation of cache image.
Diffstat (limited to 'src/H5Fsuper.c')
-rw-r--r-- | src/H5Fsuper.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/H5Fsuper.c b/src/H5Fsuper.c index d30434d..4250ff0 100644 --- a/src/H5Fsuper.c +++ b/src/H5Fsuper.c @@ -856,10 +856,6 @@ H5F__super_read(H5F_t *f, hid_t meta_dxpl_id, hid_t raw_dxpl_id, hbool_t initial hbool_t rw = ((rw_flags & H5AC__READ_ONLY_FLAG) == 0); H5O_mdci_t mdci_msg; - /* Message exists but version high bound does not allow it */ - if(f->shared->high_bound < H5F_LIBVER_V110) - HGOTO_ERROR(H5E_FILE, H5E_CANTGET, FAIL, "format version out of bound for metadata cache image") - /* if the metadata cache image superblock extension message exists, * read its contents and pass the data on to the metadata cache. * Given this data, the cache will load and decode the metadata |