summaryrefslogtreecommitdiffstats
path: root/src/H5Ocopy.c
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2011-10-18 21:29:13 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2011-10-18 21:29:13 (GMT)
commitb02f6c2171986e08df00cbf47361a94a0833d72e (patch)
tree1e261c5416ebc0dd725c0dd53d55984cac83ed6e /src/H5Ocopy.c
parentfa25014d40a6e74b451e3aa9fef45e61a62d6f80 (diff)
downloadhdf5-b02f6c2171986e08df00cbf47361a94a0833d72e.zip
hdf5-b02f6c2171986e08df00cbf47361a94a0833d72e.tar.gz
hdf5-b02f6c2171986e08df00cbf47361a94a0833d72e.tar.bz2
[svn-r21604] Port r21603 to 1.8 branch
Purpose: Add generic skip list implementation Description: Added new H5SL_TYPE_GENERIC skip list type, which uses void *'s as keys and a client-supplied callback for key comparison. This was added to support the upcoming "merge named datatype" feature for H5Ocopy, but may be used in other places as well. Also added testing. Also fixed a potential bug with the H5SL_TYPE_OBJ implementation, and added testing for that. Tested: jam, koala, heiwa (h5committest), durandal
Diffstat (limited to 'src/H5Ocopy.c')
-rw-r--r--src/H5Ocopy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Ocopy.c b/src/H5Ocopy.c
index 45ca431..81552dd 100644
--- a/src/H5Ocopy.c
+++ b/src/H5Ocopy.c
@@ -960,7 +960,7 @@ H5O_copy_header(const H5O_loc_t *oloc_src, H5O_loc_t *oloc_dst /*out */,
cpy_info.preserve_null = TRUE;
/* Create a skip list to keep track of which objects are copied */
- if((cpy_info.map_list = H5SL_create(H5SL_TYPE_OBJ)) == NULL)
+ if((cpy_info.map_list = H5SL_create(H5SL_TYPE_OBJ, NULL)) == NULL)
HGOTO_ERROR(H5E_SLIST, H5E_CANTCREATE, FAIL, "cannot make skip list")
/* copy the object from the source file to the destination file */