From 8cf22df741e227437e9eb3228cb1f0bb6ba9dc1e Mon Sep 17 00:00:00 2001 From: James Laird Date: Thu, 25 Jan 2007 09:19:17 -0500 Subject: [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. --- src/H5Ocopy.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/H5Ocopy.c b/src/H5Ocopy.c index f88e9cf..b7c2d1c 100644 --- a/src/H5Ocopy.c +++ b/src/H5Ocopy.c @@ -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 */ -- cgit v0.12