mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[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:
parent
7968c50607
commit
1c320f0025
@ -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;
|
||||
|
||||
|
1015
test/objcopy.c
1015
test/objcopy.c
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user