diff options
Diffstat (limited to 'src/H5Oalloc.c')
-rw-r--r-- | src/H5Oalloc.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/H5Oalloc.c b/src/H5Oalloc.c index 6badfb7..ae07294 100644 --- a/src/H5Oalloc.c +++ b/src/H5Oalloc.c @@ -594,9 +594,13 @@ H5O_alloc_extend_chunk(H5F_t *f, /* Spin through existing messages, adjusting them */ for(u = 0; u < oh->nmesgs; u++) { /* Adjust raw addresses for messages in this chunk to reflect new 'image' address */ - if(oh->mesg[u].chunkno == chunkno) + if(oh->mesg[u].chunkno == chunkno) { oh->mesg[u].raw = oh->chunk[chunkno].image + extra_prfx_size + (oh->mesg[u].raw - old_image); + /* Flag message as dirty */ + oh->mesg[u].dirty = TRUE; + } /* endif */ + /* Find continuation message which points to this chunk and adjust chunk's size */ /* (Chunk 0 doesn't have a continuation message that points to it and * it's size is directly encoded in the object header) */ |