diff options
author | Jerome Soumagne <jsoumagne@hdfgroup.org> | 2016-02-29 00:52:05 (GMT) |
---|---|---|
committer | Jerome Soumagne <jsoumagne@hdfgroup.org> | 2016-11-29 23:42:32 (GMT) |
commit | 5eb05274cdc6d87e7aa52b6c279faf6f44022a09 (patch) | |
tree | 8980fa943e303299cc467a3d88429f8286b2b6b1 /src | |
parent | a52c9c172d44cdb2f58c2000e655b1766d249485 (diff) | |
download | hdf5-5eb05274cdc6d87e7aa52b6c279faf6f44022a09.zip hdf5-5eb05274cdc6d87e7aa52b6c279faf6f44022a09.tar.gz hdf5-5eb05274cdc6d87e7aa52b6c279faf6f44022a09.tar.bz2 |
(Tmp) Do not enter infinite loop
Diffstat (limited to 'src')
-rw-r--r-- | src/H5.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -361,16 +361,16 @@ H5_term_library(void) } /* end if */ } while(pending && ntries++ < 100); - if(pending) { +// if(pending) { /* Only display the error message if the user is interested in them. */ - if(func) { - fprintf(stderr, "HDF5: infinite loop closing library\n"); - fprintf(stderr, " %s\n", loop); -#ifndef NDEBUG - HDabort(); -#endif /* NDEBUG */ - } /* end if */ - } /* end if */ +// if(func) { +// fprintf(stderr, "HDF5: infinite loop closing library\n"); +// fprintf(stderr, " %s\n", loop); +//#ifndef NDEBUG +// HDabort(); +//#endif /* NDEBUG */ +// } /* end if */ +// } /* end if */ #ifdef H5_HAVE_MPE /* Close MPE instrumentation library. May need to move this |