diff options
author | John Mainzer <mainzer@hdfgroup.org> | 2008-10-11 01:08:31 (GMT) |
---|---|---|
committer | John Mainzer <mainzer@hdfgroup.org> | 2008-10-11 01:08:31 (GMT) |
commit | 032898afc51c9dc9555c918c8a0d3cd5e4d2872a (patch) | |
tree | 685b0f3d428371436ad679ad450907e3a9147186 | |
parent | c30c0a0cbb5ecf08870a634fd11c80719d7990e9 (diff) | |
download | hdf5-032898afc51c9dc9555c918c8a0d3cd5e4d2872a.zip hdf5-032898afc51c9dc9555c918c8a0d3cd5e4d2872a.tar.gz hdf5-032898afc51c9dc9555c918c8a0d3cd5e4d2872a.tar.bz2 |
[svn-r15836] Fixed a hole in the input checking for the metada cache.
Tested on Phoenix (serial)
Kagiso (parallel)
Linew (serial)
There were updates during my testing, but I decided to check in
regarless without further testing as my change is very localized.
-rw-r--r-- | src/H5AC.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3138,6 +3138,7 @@ H5AC_validate_config(H5AC_cache_config_t * config_ptr) if ( ( config_ptr->evictions_enabled == FALSE ) && ( ( config_ptr->incr_mode != H5C_incr__off ) || + ( config_ptr->flash_incr_mode != H5C_flash_incr__off ) || ( config_ptr->incr_mode != H5C_decr__off ) ) ) { HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, \ |