summaryrefslogtreecommitdiffstats
path: root/src/H5Dint.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2010-09-17 15:40:05 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2010-09-17 15:40:05 (GMT)
commite9f71d27cc5b2a90f55f22d2ed7e3b7a2c98645d (patch)
tree05561057609b7e784c720c8f12e85bc22b686a39 /src/H5Dint.c
parent3bfb10b2fc080b138ed8fb934c59b383fc292c98 (diff)
downloadhdf5-e9f71d27cc5b2a90f55f22d2ed7e3b7a2c98645d.zip
hdf5-e9f71d27cc5b2a90f55f22d2ed7e3b7a2c98645d.tar.gz
hdf5-e9f71d27cc5b2a90f55f22d2ed7e3b7a2c98645d.tar.bz2
[svn-r19414] Error return value was FAIL. Should be NULL.
Tested: LLNL up which this was flagged.
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r--src/H5Dint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c
index d4097b5..e5f15f4 100644
--- a/src/H5Dint.c
+++ b/src/H5Dint.c
@@ -561,7 +561,7 @@ done:
if(ret_value == NULL)
if(new_dset != NULL) {
if(new_dset->dcpl_id != 0 && H5I_dec_ref(new_dset->dcpl_id) < 0)
- HDONE_ERROR(H5E_DATASET, H5E_CANTDEC, FAIL, "can't decrement temporary datatype ID")
+ HDONE_ERROR(H5E_DATASET, H5E_CANTDEC, NULL, "can't decrement temporary datatype ID")
new_dset = H5FL_FREE(H5D_shared_t, new_dset);
} /* end if */