diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-10-02 18:32:46 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-10-02 18:32:46 (GMT) |
commit | a36a5b30d79f037169fc5cf95a2a600ded674409 (patch) | |
tree | ac3be1996387a4eec46a30ae90b3fd6d96fc6b0f /src/H5Fpkg.h | |
parent | 9da1caea1527bf06a8c1fedd49992f49c5f2afaf (diff) | |
download | hdf5-a36a5b30d79f037169fc5cf95a2a600ded674409.zip hdf5-a36a5b30d79f037169fc5cf95a2a600ded674409.tar.gz hdf5-a36a5b30d79f037169fc5cf95a2a600ded674409.tar.bz2 |
[svn-r12705] Description:
Fix file handle destroy routine to not attempt to flush out partially
initialized file handles (when opening a file fails).
Tested on: (until they finished testing, this time... :-)
FreeBSD/32 4.11 (sleipnir) w/threadsafe
Linux/64 2.4 (mir) w/1.6 compat
Linux/32 2.4 (heping) w/FORTRAN & C++
Mac OSX/32 10.4.8 (amazon)
Diffstat (limited to 'src/H5Fpkg.h')
-rw-r--r-- | src/H5Fpkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fpkg.h b/src/H5Fpkg.h index 7dba833..7944c89 100644 --- a/src/H5Fpkg.h +++ b/src/H5Fpkg.h @@ -176,7 +176,7 @@ H5_DLL herr_t H5F_mount_count_ids(H5F_t *f, unsigned *nopen_files, unsigned *nop /* Superblock related routines */ H5_DLL hsize_t H5F_init_superblock(const H5F_t *f, hid_t dxpl_id); -H5_DLL herr_t H5F_write_superblock(H5F_t *f, hid_t dxpl_id, uint8_t *buf); +H5_DLL herr_t H5F_write_superblock(H5F_t *f, hid_t dxpl_id); H5_DLL herr_t H5F_read_superblock(H5F_t *f, hid_t dxpl_id, H5G_loc_t *root_loc, haddr_t addr, uint8_t *buf, size_t buf_size); /* Shared file list related routines */ |