summaryrefslogtreecommitdiffstats
path: root/c++/src/H5IdComponent.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2014-03-23 21:30:43 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2014-03-23 21:30:43 (GMT)
commit74079aa0de09be6c57244bb4d33fcda51f7a2f4c (patch)
treeccce4a37a0a538d1a8871a3d2828e7f1f30746e4 /c++/src/H5IdComponent.cpp
parente18ee63c5a5c294d1949d83b1d34ae1fe15086ae (diff)
downloadhdf5-74079aa0de09be6c57244bb4d33fcda51f7a2f4c.zip
hdf5-74079aa0de09be6c57244bb4d33fcda51f7a2f4c.tar.gz
hdf5-74079aa0de09be6c57244bb4d33fcda51f7a2f4c.tar.bz2
[svn-r24870] Description:
- Added another overload for char* argument: ssize_t getComment(const char* name, const size_t buf_size, char* comment) - Changed default value to 0 for the other two getComment methods - Added HDmemset to after every char string allocation to clear the buffer - Added a null terminator to the comment returned from the C call, in getComment methods - Some minor cleanup Merged from trunk: -r24865 -r24867 Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
Diffstat (limited to 'c++/src/H5IdComponent.cpp')
-rw-r--r--c++/src/H5IdComponent.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/c++/src/H5IdComponent.cpp b/c++/src/H5IdComponent.cpp
index c60d05c..cdf4272 100644
--- a/c++/src/H5IdComponent.cpp
+++ b/c++/src/H5IdComponent.cpp
@@ -25,6 +25,7 @@
#include "H5Library.h"
#include "H5IdComponent.h"
#include "H5DataSpace.h"
+#include "H5private.h" // for HDmemset
#ifndef H5_NO_NAMESPACE
namespace H5 {
@@ -289,6 +290,8 @@ H5std_string IdComponent::p_get_file_name() const
// Call H5Fget_name again to get the actual file name
char* name_C = new char[name_size+1]; // temporary C-string for C API
+ HDmemset(name_C, 0, name_size+1); // clear buffer
+
name_size = H5Fget_name(temp_id, name_C, name_size+1);
// Check for failure again