[svn-r21617] Description:

Recalculate the size of destination attribute message when the source and
destination versions are different during an object copy operation. 
(Jira: HDFF-7718)

Tested on:
    Mac OS X/32 10.7.2 (amazon) w/debug
    (h5committest upcoming)
This commit is contained in:
Quincey Koziol 2011-10-20 12:05:23 -05:00
parent 7968c50607
commit 1c320f0025
2 changed files with 522 additions and 497 deletions

View File

@ -1006,6 +1006,10 @@ H5A_attr_copy_file(const H5A_t *attr_src, H5F_t *file_dst, hbool_t *recompute_si
if(H5A_set_version(file_dst, attr_dst) < 0)
HGOTO_ERROR(H5E_ATTR, H5E_CANTSET, NULL, "unable to update attribute version")
/* Recompute the destination attribute's size, if it's a different version */
if(attr_src->shared->version != attr_dst->shared->version)
*recompute_size = TRUE;
/* Set return value */
ret_value = attr_dst;

File diff suppressed because it is too large Load Diff