diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-01-23 03:46:31 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-01-23 03:46:31 (GMT) |
commit | 0c9bd3d4e27b7188825c6e71fc47931fdfb8ed1c (patch) | |
tree | 02ecf7104bff4571de31ac0254449b3d0e2b0642 /src/H5Ocopy.c | |
parent | 58db19e6c576fbc12fdf756f1c2aee8186f1e90a (diff) | |
download | hdf5-0c9bd3d4e27b7188825c6e71fc47931fdfb8ed1c.zip hdf5-0c9bd3d4e27b7188825c6e71fc47931fdfb8ed1c.tar.gz hdf5-0c9bd3d4e27b7188825c6e71fc47931fdfb8ed1c.tar.bz2 |
[svn-r13176] Description:
Push code further toward shared message method calling refactor.
Tested on:
FreeBSD/32 6.2 (duty)
Too minor to require h5committest
Diffstat (limited to 'src/H5Ocopy.c')
-rw-r--r-- | src/H5Ocopy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Ocopy.c b/src/H5Ocopy.c index f51533b..c1d7d04 100644 --- a/src/H5Ocopy.c +++ b/src/H5Ocopy.c @@ -420,7 +420,7 @@ H5O_copy_header_real(const H5O_loc_t *oloc_src, H5O_loc_t *oloc_dst /*out */, if(NULL == mesg_src->native) { /* Decode the message if necessary */ HDassert(copy_type->decode); - if(NULL == (mesg_src->native = (copy_type->decode)(oloc_src->file, dxpl_id, mesg_src->raw))) + if(NULL == (mesg_src->native = (copy_type->decode)(oloc_src->file, dxpl_id, mesg_src->flags, mesg_src->raw))) HGOTO_ERROR(H5E_OHDR, H5E_CANTDECODE, FAIL, "unable to decode a message") } /* end if (NULL == mesg_src->native) */ @@ -502,7 +502,7 @@ H5O_copy_header_real(const H5O_loc_t *oloc_src, H5O_loc_t *oloc_dst /*out */, if(NULL == mesg_src->native) { /* Decode the message if necessary */ HDassert(copy_type->decode); - if(NULL == (mesg_src->native = (copy_type->decode)(oloc_src->file, dxpl_id, mesg_src->raw))) + if(NULL == (mesg_src->native = (copy_type->decode)(oloc_src->file, dxpl_id, mesg_dst->flags, mesg_src->raw))) HGOTO_ERROR(H5E_OHDR, H5E_CANTDECODE, FAIL, "unable to decode a message") } /* end if (NULL == mesg_src->native) */ |