summaryrefslogtreecommitdiffstats
path: root/src/H5Ocache_image.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2019-08-26 19:38:58 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2019-08-26 19:38:58 (GMT)
commit3090ac81506094ee510ae89c31749b5c1632aa34 (patch)
tree10ee129920e9a97629082664c01729815aeb38ee /src/H5Ocache_image.c
parent884ad149e29f7c99487af676f0bbcd88cbf2735f (diff)
downloadhdf5-3090ac81506094ee510ae89c31749b5c1632aa34.zip
hdf5-3090ac81506094ee510ae89c31749b5c1632aa34.tar.gz
hdf5-3090ac81506094ee510ae89c31749b5c1632aa34.tar.bz2
Add a 'closing' flag on the shared file struct, and switch several of the
"internal" data structures to use it.
Diffstat (limited to 'src/H5Ocache_image.c')
-rw-r--r--src/H5Ocache_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Ocache_image.c b/src/H5Ocache_image.c
index 7336211..70d9ef5 100644
--- a/src/H5Ocache_image.c
+++ b/src/H5Ocache_image.c
@@ -325,7 +325,7 @@ H5O__mdci_delete(H5F_t *f, H5O_t H5_ATTR_UNUSED *open_oh, void *_mesg)
- if(f->closing) {
+ if(f->shared->closing) {
/* Get the eoa, and verify that it has the expected value */
if(HADDR_UNDEF == (final_eoa = H5FD_get_eoa(f->shared->lf, H5FD_MEM_DEFAULT)) )