diff options
author | John Mainzer <mainzer@hdfgroup.org> | 2005-09-28 22:00:55 (GMT) |
---|---|---|
committer | John Mainzer <mainzer@hdfgroup.org> | 2005-09-28 22:00:55 (GMT) |
commit | 6baed67905135dcb3f86b5472a36c7c201e93921 (patch) | |
tree | b63e3ce58c8c39b9b7a3f19e8d16e19270345a67 /src/H5AC.c | |
parent | be9a23cac35c2a259578e2a4ca5ae5ad67b04215 (diff) | |
download | hdf5-6baed67905135dcb3f86b5472a36c7c201e93921.zip hdf5-6baed67905135dcb3f86b5472a36c7c201e93921.tar.gz hdf5-6baed67905135dcb3f86b5472a36c7c201e93921.tar.bz2 |
[svn-r11475] Purpose:
Bug fix
Description:
In production builds, H5MM_malloc was undefined in H5AC.c
Solution:
Include H5MMprivate.h in H5AC.c, which defines H5MM_malloc() in
both debug and production modes.
Platforms tested:
h5committested, serial production build on Heping
Misc. update:
Diffstat (limited to 'src/H5AC.c')
-rw-r--r-- | src/H5AC.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -61,6 +61,7 @@ #include "H5FDprivate.h" /* File drivers */ #include "H5FLprivate.h" /* Free Lists */ #include "H5Iprivate.h" /* IDs */ +#include "H5MMprivate.h" /* Memory management */ #include "H5Pprivate.h" /* Property lists */ #ifdef H5_HAVE_FPHDF5 |