diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-01-23 21:28:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-01-23 21:28:24 (GMT) |
commit | 5e7ed206eacbaf97f92765a393af0acffe931934 (patch) | |
tree | 1affec8d0f08d84a99659087066de758163b893d /test/testhdf5.h | |
parent | 32f52d953cffb133e92b772746b66c57714ff6e8 (diff) | |
download | hdf5-5e7ed206eacbaf97f92765a393af0acffe931934.zip hdf5-5e7ed206eacbaf97f92765a393af0acffe931934.tar.gz hdf5-5e7ed206eacbaf97f92765a393af0acffe931934.tar.bz2 |
[svn-r4851] Purpose:
Bug Fix
Description:
When file space was returned to the file space free-list for reuse,
occasionally raw data allocations which used space from the free-list
would overlap with the metadata accumulator and get over-written with
the cached information in the accumulator, corrupting the data.
Solution:
Check if the space about to be recycled on the free-list is going to be
used for raw data and also overlaps with the metadata accumulator cache,
avoiding using space that fits those criteria.
This fixes bug #701
Platforms tested:
FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'test/testhdf5.h')
-rw-r--r-- | test/testhdf5.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/testhdf5.h b/test/testhdf5.h index ff79e75..0868983 100644 --- a/test/testhdf5.h +++ b/test/testhdf5.h @@ -135,6 +135,7 @@ void test_iterate(void); void test_array(void); void test_genprop(void); void test_configure(void); +void test_misc(void); /* Prototypes for the cleanup routines */ void cleanup_metadata(void); @@ -150,5 +151,6 @@ void cleanup_iterate(void); void cleanup_array(void); void cleanup_genprop(void); void cleanup_configure(void); +void cleanup_misc(void); #endif /* HDF5cleanup_H */ |