diff options
author | Quincey Koziol <koziol@lbl.gov> | 2020-12-01 16:15:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 16:15:34 (GMT) |
commit | adf7b1d4cf788f25a52619f5d1c957ac5a7c345c (patch) | |
tree | 3795ebb0bb5f7f752e26392971d0efdfe7c930cc /src/H5Itest.c | |
parent | 123c5a653dbe3867e06eb8c31da952b7ef042f95 (diff) | |
download | hdf5-adf7b1d4cf788f25a52619f5d1c957ac5a7c345c.zip hdf5-adf7b1d4cf788f25a52619f5d1c957ac5a7c345c.tar.gz hdf5-adf7b1d4cf788f25a52619f5d1c957ac5a7c345c.tar.bz2 |
Add flag to H5CX_pop that allow setting the properties to return to application to be skipped. (#134)
Diffstat (limited to 'src/H5Itest.c')
-rw-r--r-- | src/H5Itest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Itest.c b/src/H5Itest.c index be09a03..40618d1 100644 --- a/src/H5Itest.c +++ b/src/H5Itest.c @@ -102,7 +102,7 @@ done: if (vol_wrapper_set && H5VL_reset_vol_wrapper() < 0) HDONE_ERROR(H5E_ID, H5E_CANTRESET, FAIL, "can't reset VOL wrapper info") - if (api_ctx_pushed && H5CX_pop() < 0) + if (api_ctx_pushed && H5CX_pop(FALSE) < 0) HDONE_ERROR(H5E_SYM, H5E_CANTRESET, (-1), "can't reset API context") FUNC_LEAVE_NOAPI(ret_value) |