When the constructor DenseNodesData::DenseNodesData() it called, the field m_DataUnpacked might be set to true or false. If the unpack parameter is true in the constructor, when DenseNodesData::unpackData() is called, then variable m_DataUnpacked might be true, but the data might not actually be unpacked. This causes corruption when reading files.
This PR fixed a problem caused by the fact that m_DataUnpacked is not initilized properly.
When the constructor
DenseNodesData::DenseNodesData()
it called, the fieldm_DataUnpacked
might be set to true or false. If theunpack
parameter is true in the constructor, whenDenseNodesData::unpackData()
is called, then variablem_DataUnpacked
might be true, but the data might not actually be unpacked. This causes corruption when reading files.This PR fixed a problem caused by the fact that m_DataUnpacked is not initilized properly.