diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-12 03:00:31 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-12 03:00:31 (GMT) |
commit | c227f4ffa55010ea480773d9df9b68baba2b08e0 (patch) | |
tree | b2942cfaf387acd91863967c5d014ee89ee06b39 /src/H5Ocopy.c | |
parent | a64589450e5b41dc55b1c6f2e42e837fb0c72bba (diff) | |
download | hdf5-c227f4ffa55010ea480773d9df9b68baba2b08e0.zip hdf5-c227f4ffa55010ea480773d9df9b68baba2b08e0.tar.gz hdf5-c227f4ffa55010ea480773d9df9b68baba2b08e0.tar.bz2 |
[svn-r13499] Description:
Avoid storing the # of attributes in the "attribute info" message
and regenerate it when the object is opened.
Tested on:
FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5Ocopy.c')
-rw-r--r-- | src/H5Ocopy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Ocopy.c b/src/H5Ocopy.c index 748d780..5549cd6 100644 --- a/src/H5Ocopy.c +++ b/src/H5Ocopy.c @@ -343,6 +343,7 @@ H5O_copy_header_real(const H5O_loc_t *oloc_src, H5O_loc_t *oloc_dst /*out */, oh_dst->flags = oh_src->flags; oh_dst->skipped_mesg_size = oh_src->skipped_mesg_size; oh_dst->link_msgs_seen = oh_src->link_msgs_seen; + oh_dst->attr_msgs_seen = oh_src->attr_msgs_seen; oh_dst->sizeof_size = H5F_SIZEOF_SIZE(oloc_dst->file); oh_dst->sizeof_addr = H5F_SIZEOF_ADDR(oloc_dst->file); |