mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r14002] Description:
Fix bug where pointer to variable was used instead of variable itself. Tested on: FreeBSD/32 6.2 (duty) FreeBSD/64 6.2 (liberty) Linux/32 2.6 (kagiso) Mac OS X/32 10.4.10 (amazon)
This commit is contained in:
parent
bec21e59ef
commit
b8ef032be6
@ -700,7 +700,7 @@ H5O_copy_header_real(const H5O_loc_t *oloc_src, H5O_loc_t *oloc_dst /*out */,
|
||||
HDassert(mesg_dst->native);
|
||||
|
||||
/* the object header is needed in the post copy for shared message */
|
||||
cpy_info->oh_dst = &oh_dst;
|
||||
cpy_info->oh_dst = oh_dst;
|
||||
|
||||
/* Perform "post copy" operation on message */
|
||||
if((copy_type->post_copy_file)(oloc_src, mesg_src->native, oloc_dst,
|
||||
|
Loading…
x
Reference in New Issue
Block a user