HPL1: fix possible use of uninitialised variable

This commit is contained in:
grisenti 2022-08-03 17:52:04 +02:00 committed by Eugene Sandulenko
parent 53c28a1686
commit 2080b8b502
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -317,7 +317,7 @@ typedef tColladaNodeList::iterator tColladaNodeListIt;
class cColladaNode {
public:
cColladaNode() : mlCount(0), pParent(NULL), mvScale(1, 1, 1) {}
cColladaNode() : mlCount(0), pParent(NULL), mvScale(1, 1, 1), mbSourceIsFile(false) {}
tString msId;
tString msName;