diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2012-02-02 17:02:28 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2012-02-02 17:02:28 (GMT) |
commit | 7bd8d0f25e0c10cca68396962e4d6ea7f54cfb9e (patch) | |
tree | d5c24a338921823e1023ecabaaf06599f7c9ff4d /src | |
parent | 75e9bf9e2ce047ba833ea35a0d068255cf0588ed (diff) | |
download | hdf5-7bd8d0f25e0c10cca68396962e4d6ea7f54cfb9e.zip hdf5-7bd8d0f25e0c10cca68396962e4d6ea7f54cfb9e.tar.gz hdf5-7bd8d0f25e0c10cca68396962e4d6ea7f54cfb9e.tar.bz2 |
[svn-r21904] This is a followup commit for Issue 7756 - Creating a dataset in a read-only file caused seg fault when the file is closed. I changed the error ID from H5E_CACHE to H5E_OHDR in the error report macro in H5O_create and fixed a minor problem in tfile.c.
Tested on jam and MacGoblin - minor changes.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5O.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1127,7 +1127,7 @@ H5O_create(H5F_t *f, hid_t dxpl_id, size_t size_hint, size_t initial_rc, /* Check for invalid access request */ if(0 == (H5F_INTENT(f) & H5F_ACC_RDWR)) - HGOTO_ERROR(H5E_CACHE, H5E_BADVALUE, FAIL, "no write intent on file") + HGOTO_ERROR(H5E_OHDR, H5E_BADVALUE, FAIL, "no write intent on file") /* Make certain we allocate at least a reasonable size for the object header */ size_hint = H5O_ALIGN_F(f, MAX(H5O_MIN_SIZE, size_hint)); |