diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-01-14 19:36:01 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-01-14 19:36:01 (GMT) |
commit | 23130b569c3846a1fd098841bb2f9912dd9040de (patch) | |
tree | 3d616062dd8da4e3042e28df4451212f8fe10b83 /src/H5Epublic.h | |
parent | d00ec8d85a03808eaa04fb3971ae6bb2c8ce2f42 (diff) | |
download | hdf5-23130b569c3846a1fd098841bb2f9912dd9040de.zip hdf5-23130b569c3846a1fd098841bb2f9912dd9040de.tar.gz hdf5-23130b569c3846a1fd098841bb2f9912dd9040de.tar.bz2 |
[svn-r9825] Purpose:
Bug fix
Description:
Fix possible overrun in error description string by allocating large enough
string on the fly.
Platforms tested:
FreeBSD 4.10 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5Epublic.h')
-rw-r--r-- | src/H5Epublic.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/H5Epublic.h b/src/H5Epublic.h index 461bc08..1671967 100644 --- a/src/H5Epublic.h +++ b/src/H5Epublic.h @@ -27,10 +27,7 @@ /* Value for the default error stack */ #define H5E_DEFAULT 0 -/* Limit of error strings recorded */ -#define H5E_LEN 128 - -/* Take out _new later */ +/* Different kinds of error information */ typedef enum H5E_type_t { H5E_MAJOR, H5E_MINOR |