diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-11-20 12:02:55 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-11-20 12:02:55 (GMT) |
commit | e8b52952b85a0eb95333e4e41fa8fd1e91aff51a (patch) | |
tree | 4d1f23a10209925f657102cc3b4546b0455c6e73 | |
parent | 6a5559be99224fd6693f0b11fe31ad61e211f6cb (diff) | |
download | hdf5-e8b52952b85a0eb95333e4e41fa8fd1e91aff51a.zip hdf5-e8b52952b85a0eb95333e4e41fa8fd1e91aff51a.tar.gz hdf5-e8b52952b85a0eb95333e4e41fa8fd1e91aff51a.tar.bz2 |
[svn-r14272] Description:
Fix missing parameter from last checkin...
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
-rw-r--r-- | src/H5Dint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c index 762eb66..94b53d3 100644 --- a/src/H5Dint.c +++ b/src/H5Dint.c @@ -534,7 +534,7 @@ H5D_init_space(H5F_t *file, const H5D_t *dset, const H5S_t *space) use_latest_format = H5F_USE_LATEST_FORMAT(file); /* Copy dataspace for dataset */ - if(NULL == (dset->shared->space = H5S_copy(space, FALSE))) + if(NULL == (dset->shared->space = H5S_copy(space, FALSE, TRUE))) HGOTO_ERROR(H5E_DATASET, H5E_CANTCOPY, FAIL, "can't copy dataspace") /* Set the latest format, if requested */ |