diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-08-30 19:59:37 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-08-30 19:59:37 (GMT) |
commit | 99d84a8f4c45e6033046d9b825a2c5dc7c65ac2a (patch) | |
tree | deb7762f9230f4f1598a34edeecf35ea98b0cfe6 /src/H5Zpublic.h | |
parent | 27e31d9c26835e5e0b3e81d89cd7bd5d330b53f6 (diff) | |
download | hdf5-99d84a8f4c45e6033046d9b825a2c5dc7c65ac2a.zip hdf5-99d84a8f4c45e6033046d9b825a2c5dc7c65ac2a.tar.gz hdf5-99d84a8f4c45e6033046d9b825a2c5dc7c65ac2a.tar.bz2 |
[svn-r1619] ./src/H5O.c [1.2, 1.3]
Fixed a read-uninitialized-memory error that resulted in the
file containing small amounts (<8 bytes each) of uninitialized
data. These padding areas (which are never read by hdf5) are
initialized to zero now.
./MANIFEST
./src/H5Z.c
./src/H5Zdeflate.c [NEW]
./src/H5Zprivate.h
./src/H5Zpublic.h
./src/Makefile.in
The zlib filter was moved to a separate file but is still
automatically defined.
Diffstat (limited to 'src/H5Zpublic.h')
-rw-r--r-- | src/H5Zpublic.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5Zpublic.h b/src/H5Zpublic.h index ea9e62f..f88d1f5 100644 --- a/src/H5Zpublic.h +++ b/src/H5Zpublic.h @@ -55,6 +55,10 @@ extern "C" { __DLL__ herr_t H5Zregister(H5Z_filter_t id, const char *comment, H5Z_func_t filter); +size_t H5Z_filter_deflate(unsigned flags, size_t cd_nelmts, + const unsigned cd_values[], size_t nbytes, + size_t *buf_size, void **buf); + #ifdef __cplusplus } #endif |