[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
This commit is contained in:
Patrick Lu 1999-07-06 11:59:40 -05:00
parent d70b72d630
commit 2dba34824f

View File

@ -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 */