diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2012-03-13 04:21:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2012-03-13 04:21:02 (GMT) |
commit | 864e6b0e70c25b189b00e257d6c5ee8fbd2d1dbc (patch) | |
tree | 58a5444d8c34e9515b7c26b0b423904d1fe5b65e /src/H5Ocopy.c | |
parent | 493e1e8f805964a62918b11908d28dae93b0d47a (diff) | |
download | hdf5-864e6b0e70c25b189b00e257d6c5ee8fbd2d1dbc.zip hdf5-864e6b0e70c25b189b00e257d6c5ee8fbd2d1dbc.tar.gz hdf5-864e6b0e70c25b189b00e257d6c5ee8fbd2d1dbc.tar.bz2 |
[svn-r22059] Description:
Bring r22058 from trunk to 1.8 branch:
Better fix for zero-sized dataset error (r22053).
Tested on:
Mac OSX/64 10.7.3 (amazon) w/debug & parallel
Diffstat (limited to 'src/H5Ocopy.c')
-rw-r--r-- | src/H5Ocopy.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5Ocopy.c b/src/H5Ocopy.c index 1f8b4d8..d9a4b42 100644 --- a/src/H5Ocopy.c +++ b/src/H5Ocopy.c @@ -964,8 +964,7 @@ H5O_copy_header(const H5O_loc_t *oloc_src, H5O_loc_t *oloc_dst /*out */, HGOTO_ERROR(H5E_SLIST, H5E_CANTCREATE, FAIL, "cannot make skip list") /* copy the object from the source file to the destination file */ - if(H5O_copy_header_real(oloc_src, oloc_dst, dxpl_id, &cpy_info, NULL, NULL) - < 0) + if(H5O_copy_header_real(oloc_src, oloc_dst, dxpl_id, &cpy_info, NULL, NULL) < 0) HGOTO_ERROR(H5E_OHDR, H5E_CANTCOPY, FAIL, "unable to copy object") done: |