summaryrefslogtreecommitdiffstats
path: root/c++/src/H5CompType.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/H5CompType.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/H5CompType.cpp')
-rw-r--r--c++/src/H5CompType.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/src/H5CompType.cpp b/c++/src/H5CompType.cpp
index 95fddc1..da7e3e2 100644
--- a/c++/src/H5CompType.cpp
+++ b/c++/src/H5CompType.cpp
@@ -132,7 +132,7 @@ CompType::CompType(const H5Location& loc, const H5std_string& dtype_name) : Data
//--------------------------------------------------------------------------
DataType* CompType::decode() const
{
- hid_t encoded_cmptype_id;
+ hid_t encoded_cmptype_id = H5I_INVALID_HID;
try {
encoded_cmptype_id = p_decode();
}