diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-10-01 04:05:57 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-10-01 04:05:57 (GMT) |
commit | 22d0d32716a588063970a7e412d69a2937118034 (patch) | |
tree | 5e4511f0606a402590f3a27ea793006cf4db274e /c++/src/H5Location.cpp | |
parent | 10f1e6acf8916a429f2cc925f49518cfc0015b6c (diff) | |
download | hdf5-22d0d32716a588063970a7e412d69a2937118034.zip hdf5-22d0d32716a588063970a7e412d69a2937118034.tar.gz hdf5-22d0d32716a588063970a7e412d69a2937118034.tar.bz2 |
[svn-r25644] Purpose: Fixed HDFFV-8928
Description:
Followed hints on the JIRA issue to remove several potential memory
leaks.
Platforms tested:
Linux/ppc64 (ostrich)
Linux/32 2.6 (jam)
SunOS 5.11 (emu)
Diffstat (limited to 'c++/src/H5Location.cpp')
-rw-r--r-- | c++/src/H5Location.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/c++/src/H5Location.cpp b/c++/src/H5Location.cpp index 89f10b5..cd733c4 100644 --- a/c++/src/H5Location.cpp +++ b/c++/src/H5Location.cpp @@ -554,6 +554,7 @@ H5std_string H5Location::getComment(const char* name, size_t buf_size) const ssize_t comment_len = getComment(name, tmp_len+1, comment_C); if (comment_len < 0) { + delete []comment_C; throw LocationException("H5Location::getComment", "H5Oget_comment_by_name failed"); } |