summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DataType.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2017-09-07 15:12:43 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2017-09-07 15:12:43 (GMT)
commit47a2d5e48f5f3dcfed57c5be01178952030828c2 (patch)
tree1f898bbceea7c656ef4097334e4c96cf171f4940 /c++/src/H5DataType.cpp
parent7f8e7c6d15010bb722d3a18c1f90c03a81b0820b (diff)
downloadhdf5-47a2d5e48f5f3dcfed57c5be01178952030828c2.zip
hdf5-47a2d5e48f5f3dcfed57c5be01178952030828c2.tar.gz
hdf5-47a2d5e48f5f3dcfed57c5be01178952030828c2.tar.bz2
Adding variable initialization
Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
Diffstat (limited to 'c++/src/H5DataType.cpp')
-rw-r--r--c++/src/H5DataType.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/src/H5DataType.cpp b/c++/src/H5DataType.cpp
index 11b30cc..28a670e 100644
--- a/c++/src/H5DataType.cpp
+++ b/c++/src/H5DataType.cpp
@@ -285,7 +285,7 @@ hid_t DataType::p_decode() const
//--------------------------------------------------------------------------
DataType* DataType::decode() const
{
- hid_t encoded_dtype_id;
+ hid_t encoded_dtype_id = H5I_INVALID_HID;
try {
encoded_dtype_id = p_decode();
}