summaryrefslogtreecommitdiffstats
path: root/src/H5R.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2011-07-19 20:20:01 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2011-07-19 20:20:01 (GMT)
commit338fdac20dc8bbc09aa1701f092fe28013aa6aa7 (patch)
tree4cea001f686305a7d9ddceb4bbcce4d5ce4d9504 /src/H5R.c
parenta777619a6b556aeb8365f874099c1a1f42ef3466 (diff)
downloadhdf5-338fdac20dc8bbc09aa1701f092fe28013aa6aa7.zip
hdf5-338fdac20dc8bbc09aa1701f092fe28013aa6aa7.tar.gz
hdf5-338fdac20dc8bbc09aa1701f092fe28013aa6aa7.tar.bz2
[svn-r21124] Issue 2763 - adding OAPL_ID as a new parameter to H5Rdereference. A followup commit for r21117. I made 2 changes:
1. Quincey changed H5P_DATASET_ACCESS_DEFAULT to H5P_DEFAULT for the tests that call H5Rdereference. Inside H5R_dereference, I assigned H5P_DATASET_ACCESS_DEFAULT to OAPL_ID if it is H5P_DEFAULT. 2. I added the test for invalid OAPL_ID in trefer.c. Tested on jam, koala, heiwa.
Diffstat (limited to 'src/H5R.c')
-rw-r--r--src/H5R.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5R.c b/src/H5R.c
index e2d6bf3..49ef357 100644
--- a/src/H5R.c
+++ b/src/H5R.c
@@ -466,6 +466,12 @@ H5R_dereference(H5F_t *file, hid_t oapl_id, hid_t dxpl_id, H5R_type_t ref_type,
{
H5D_t *dset; /* Pointer to dataset to open */
+ /* Get correct property list */
+ if(H5P_DEFAULT == oapl_id)
+ oapl_id = H5P_DATASET_ACCESS_DEFAULT;
+ else if(TRUE != H5P_isa_class(oapl_id, H5P_DATASET_ACCESS))
+ HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not dataset access property list")
+
/* Open the dataset */
if(NULL == (dset = H5D_open(&loc, oapl_id, dxpl_id)))
HGOTO_ERROR(H5E_DATASET, H5E_NOTFOUND, FAIL, "not found")