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/Makefile.in | |
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/Makefile.in')
-rw-r--r-- | src/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index da03c0e..2c3be81 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -27,7 +27,8 @@ LIB_SRC=H5.c H5A.c H5AC.c H5B.c H5D.c H5E.c H5F.c H5Farray.c H5Fistore.c \ H5Oattr.c H5Ocomp.c H5Ocont.c H5Odtype.c H5Oefl.c H5Ofill.c H5Olayout.c \ H5Omtime.c H5Oname.c H5Onull.c H5Osdspace.c H5Oshared.c H5Ostab.c H5P.c \ H5R.c H5RA.c H5S.c H5Sall.c H5Shyper.c H5Smpio.c H5Snone.c H5Spoint.c \ - H5Sselect.c H5T.c H5Tbit.c H5Tconv.c H5Tinit.c H5Tvlen.c H5TB.c H5V.c H5Z.c + H5Sselect.c H5T.c H5Tbit.c H5Tconv.c H5Tinit.c H5Tvlen.c H5TB.c H5V.c \ + H5Z.c H5Zdeflate.c LIB_OBJ=$(LIB_SRC:.c=.lo) |