[svn-r13197] Fix another bug in H5Ocopy where messages that were deleted and converted

to NULL messages weren't marked as dirty so the destination OH wasn't
updated to reflect the change.

Tested on Windows, smirom, and kagiso.
This commit is contained in:
James Laird 2007-01-25 09:19:17 -05:00
parent 6039f60159
commit 8cf22df741

View File

@ -481,6 +481,7 @@ H5O_copy_header_real(const H5O_loc_t *oloc_src, H5O_loc_t *oloc_dst /*out */,
if(cpy_info->preserve_null && deleted[mesgno]) {
mesg_dst->type = H5O_MSG_NULL;
mesg_dst->flags = 0;
mesg_dst->dirty = 1;
}
/* Check for shared message to operate on */