diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-07-06 16:59:40 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-07-06 16:59:40 (GMT) |
commit | 2dba34824fd86001e2e0d0f32141e606a3d11293 (patch) | |
tree | 2dac5cbc158e07ce13ed2135aa3ed695a3d0546f /src/H5O.c | |
parent | d70b72d630cba4d78cca0f134e6aa26318efff27 (diff) | |
download | hdf5-2dba34824fd86001e2e0d0f32141e606a3d11293.zip hdf5-2dba34824fd86001e2e0d0f32141e606a3d11293.tar.gz hdf5-2dba34824fd86001e2e0d0f32141e606a3d11293.tar.bz2 |
[svn-r1426]
had to conditional compile some code out for the debug version of this file
on windows. the microsoft c run time lib calls special versions of free and
malloc in the debug mode. this code causes problems for the library(crashes)
so i am taking the statements out in this version(win32 and debug) until i can
figure out a way around the problem
Diffstat (limited to 'src/H5O.c')
-rw-r--r-- | src/H5O.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -641,9 +641,15 @@ H5O_flush(H5F_t *f, hbool_t destroy, const haddr_t *addr, H5O_t *oh) if (destroy) { /* destroy chunks */ + /*the conditional below is because of the microsoft c run time library + it calls its own version of malloc and free and does checks on the mem. + causes problems with this code so i am taking it out for the win32 debug + version until i can figure out a way around it*/ +#if !defined(WIN32) && !defined(_DEBUG) for (i = 0; i < oh->nchunks; i++) { oh->chunk[i].image = H5MM_xfree(oh->chunk[i].image); } +#endif oh->chunk = H5MM_xfree(oh->chunk); /* destroy messages */ |