diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-03-31 05:27:17 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-03-31 05:27:17 (GMT) |
commit | 5f17eea9cdda27b6d5e56359f4cc540cb5bb57d9 (patch) | |
tree | 1ae3fbb685f870bc2eb76303296466b6504b8e7d /c++/src/H5DxferProp.cpp | |
parent | 82df757e966de5fdd346073ff2692b62416c96e3 (diff) | |
download | hdf5-5f17eea9cdda27b6d5e56359f4cc540cb5bb57d9.zip hdf5-5f17eea9cdda27b6d5e56359f4cc540cb5bb57d9.tar.gz hdf5-5f17eea9cdda27b6d5e56359f4cc540cb5bb57d9.tar.bz2 |
[svn-r24929] Description:
Added proper deallocation/allocation to test.
Revised incorrect comments.
Platforms tested:
Linux/ppc64 (ostrich)
Linux/32 2.6 (jam)
SunOS 5.11 (emu)
Diffstat (limited to 'c++/src/H5DxferProp.cpp')
-rw-r--r-- | c++/src/H5DxferProp.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/c++/src/H5DxferProp.cpp b/c++/src/H5DxferProp.cpp index 3379678..1e5c7b8 100644 --- a/c++/src/H5DxferProp.cpp +++ b/c++/src/H5DxferProp.cpp @@ -237,9 +237,8 @@ void DSetMemXferPropList::setDataTransform(const H5std_string& expression) const //-------------------------------------------------------------------------- ssize_t DSetMemXferPropList::getDataTransform(char* exp, size_t buf_size) const { - // If application does not pass in - // H5Pget_data_transform will get buf_size characters of the expression including - // the null terminator + // H5Pget_data_transform will get buf_size characters of the expression + // including the null terminator ssize_t exp_len; exp_len = H5Pget_data_transform(id, exp, buf_size); @@ -254,7 +253,7 @@ ssize_t DSetMemXferPropList::getDataTransform(char* exp, size_t buf_size) const // expression or at [buf_size-1] if the expression is at least the size // of the buffer. - // Return the actual comment length, which might be different from buf_size + // Return the expression length, which might be different from buf_size return(exp_len); } |