diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-08-18 17:14:43 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-08-18 17:14:43 (GMT) |
commit | d27a31461c69001551b1168c3ca44b591f4cb82b (patch) | |
tree | bac2fc1ea06c6ab1052c0eab083c87769ac79c3f /src/H5D.c | |
parent | d9b9ed853d6b5d53935efad83d932f58ef0a5ac3 (diff) | |
download | hdf5-d27a31461c69001551b1168c3ca44b591f4cb82b.zip hdf5-d27a31461c69001551b1168c3ca44b591f4cb82b.tar.gz hdf5-d27a31461c69001551b1168c3ca44b591f4cb82b.tar.bz2 |
[svn-r601] Changes since 19980814
----------------------
./src/H5Fistore.c
Fixed a bug that caused the wrong number of chunk offsets to
be read or written from the file.
./src/H5Z.c
Fixed a memory bug.
./test/dtypes.c
Removed redundant tests.
./bin/snapshot
Removed Perl code from a shell script. Oops :-)
./src/H5D.c
Removed cvs merge conflicts.
./src/H5Omtime.c
Fixed a typo in the Irix5.3 code.
./src/H5S.c
Fixed a memory leak.
./src/H5Shyper.c
Fixed a bad call to malloc() that didn't allocate enough
memory. Reordered a comparison to eliminate an array bounds
read error.
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 20 |
1 files changed, 2 insertions, 18 deletions
@@ -1340,11 +1340,6 @@ H5D_read(H5D_t *dataset, const H5T_t *mem_type, const H5S_t *mem_space, HGOTO_ERROR (H5E_DATASET, H5E_UNSUPPORTED, FAIL, "unable to convert from file to memory data space"); } -<<<<<<< H5D.c -#ifdef QAK - printf("%s: check 1.0\n",FUNC); -#endif /* QAK */ - #ifdef HAVE_PARALLEL /* rky 980813 This is a temporary KLUGE. * The sconv functions should be set by H5S_find, @@ -1353,12 +1348,9 @@ H5D_read(H5D_t *dataset, const H5T_t *mem_type, const H5S_t *mem_space, * (the latter in case the arguments to sconv_funcs * turn out to be inappropriate for MPI-IO). */ if (dataset->ent.file->shared->access_parms->driver == H5F_LOW_MPIO) { - sconv_func.read = H5S_mpio_spaces_read; + sconv->read = H5S_mpio_spaces_read; } #endif /*HAVE_PARALLEL*/ - -======= ->>>>>>> 1.113 /* * If there is no type conversion then try reading directly into the @@ -1694,11 +1686,6 @@ H5D_write(H5D_t *dataset, const H5T_t *mem_type, const H5S_t *mem_space, HGOTO_ERROR (H5E_DATASET, H5E_UNSUPPORTED, FAIL, "unable to convert from memory to file data space"); } -<<<<<<< H5D.c -#ifdef QAK - printf("%s: check 1.0\n",FUNC); -#endif /* QAK */ - #ifdef HAVE_PARALLEL /* rky 980813 This is a temporary KLUGE. * The sconv functions should be set by H5S_find, @@ -1707,13 +1694,10 @@ H5D_write(H5D_t *dataset, const H5T_t *mem_type, const H5S_t *mem_space, * (the latter in case the arguments to sconv_funcs * turn out to be inappropriate for MPI-IO). */ if (dataset->ent.file->shared->access_parms->driver == H5F_LOW_MPIO) { - sconv_func.write = H5S_mpio_spaces_write; + sconv->write = H5S_mpio_spaces_write; } #endif /*HAVE_PARALLEL*/ -======= - ->>>>>>> 1.113 /* * If there is no type conversion then try writing directly from * application buffer to file. |