diff options
author | Quincey Koziol <koziol@lbl.gov> | 2016-11-17 22:25:28 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@lbl.gov> | 2016-11-17 22:25:28 (GMT) |
commit | 248a93cde8d87dd3a8162831103b5358a166fed8 (patch) | |
tree | 27d7fdccfef43d717754d102708b84fe29f6b962 /src/H5AC.c | |
parent | fe849d26cd9b80df1e0e5203d050ad2ccea438c5 (diff) | |
parent | be27e1ad79dfa0507f589b29d938b7e1020a5b2d (diff) | |
download | hdf5-248a93cde8d87dd3a8162831103b5358a166fed8.zip hdf5-248a93cde8d87dd3a8162831103b5358a166fed8.tar.gz hdf5-248a93cde8d87dd3a8162831103b5358a166fed8.tar.bz2 |
Merge pull request #162 in HDFFV/hdf5 from ~KOZIOL/hdf5:develop_merge_revise_chunks_07 to develop
* commit 'be27e1ad79dfa0507f589b29d938b7e1020a5b2d':
Remove explicit support within the metadata cache for tracked compressed entries, they are now completely handled in the clients.
Diffstat (limited to 'src/H5AC.c')
-rw-r--r-- | src/H5AC.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1639,11 +1639,9 @@ H5AC_unprotect(H5F_t *f, hid_t dxpl_id, const H5AC_class_t *type, haddr_t addr, * the entry. */ if(dirtied && !deleted) { - hbool_t curr_compressed = FALSE; /* dummy for call */ size_t curr_size = 0; - size_t curr_compressed_size = 0; /* dummy for call */ - if((type->image_len)(thing, &curr_size, &curr_compressed, &curr_compressed_size) < 0) + if((type->image_len)(thing, &curr_size) < 0) HGOTO_ERROR(H5E_CACHE, H5E_CANTGETSIZE, FAIL, "Can't get size of thing") if(((H5AC_info_t *)thing)->size != curr_size) |