diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-20 16:32:55 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-20 16:32:55 (GMT) |
commit | a0530d368bc11e6ca492db47a7400150eadae377 (patch) | |
tree | 18e8ae0919eb895855b5567759c75f222c28a3b8 /src/H5Edefin.h | |
parent | eec442a8f6d26f66eda16bc144d396e90dd06516 (diff) | |
download | hdf5-a0530d368bc11e6ca492db47a7400150eadae377.zip hdf5-a0530d368bc11e6ca492db47a7400150eadae377.tar.gz hdf5-a0530d368bc11e6ca492db47a7400150eadae377.tar.bz2 |
[svn-r11277] Purpose:
Bug fix
Description:
Fix core dump when checking whether to invalidate the name of an object
when unlinking an object in a group opened through an object reference.
Solution:
Check if names of various objects are valid before comparing them, etc.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5Edefin.h')
-rw-r--r-- | src/H5Edefin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Edefin.h b/src/H5Edefin.h index 1a77f2d..a4acfbb 100644 --- a/src/H5Edefin.h +++ b/src/H5Edefin.h @@ -109,9 +109,9 @@ hid_t H5E_NOENCODER_g = FAIL; /* Filter present but encoding disabled hid_t H5E_CANTOPENOBJ_g = FAIL; /* Can't open object */ hid_t H5E_CANTCLOSEOBJ_g = FAIL; /* Can't close object */ hid_t H5E_COMPLEN_g = FAIL; /* Name component is too long */ -hid_t H5E_CWG_g = FAIL; /* Problem with current working group */ hid_t H5E_LINK_g = FAIL; /* Link count failure */ hid_t H5E_SLINK_g = FAIL; /* Symbolic link error */ +hid_t H5E_PATH_g = FAIL; /* Problem with path to object */ /* File accessability errors */ hid_t H5E_FILEEXISTS_g = FAIL; /* File already exists */ |