diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1999-09-30 02:49:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1999-09-30 02:49:44 (GMT) |
commit | 03d438979b7bc6a08d25d121676bbd2083254c80 (patch) | |
tree | 3f84ef78766cf9695bb37b3d1bf26b0e25c011e2 /src/H5F.c | |
parent | 7c7bedb1ad91b4d0da2a8de0b0fd0a45cb934699 (diff) | |
download | hdf5-03d438979b7bc6a08d25d121676bbd2083254c80.zip hdf5-03d438979b7bc6a08d25d121676bbd2083254c80.tar.gz hdf5-03d438979b7bc6a08d25d121676bbd2083254c80.tar.bz2 |
[svn-r1696] Closed file handle leak for some failure cases.
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -994,6 +994,7 @@ H5F_open(const char *name, uintn flags, hid_t fcpl_id, hid_t fapl_id) * exists), or if the new request adds write access (since the * readers don't expect the file to change under them). */ + H5FD_close(lf); if (flags & H5F_ACC_TRUNC) { file = NULL; /*to prevent destruction of wrong file*/ HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, NULL, @@ -1009,7 +1010,6 @@ H5F_open(const char *name, uintn flags, hid_t fcpl_id, hid_t fapl_id) HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, NULL, "file is already open for read-only"); } - H5FD_close(lf); file = H5F_new(file->shared, fcpl_id, fapl_id); lf = file->shared->lf; } else if (flags!=tent_flags) { |