Explorar o código

Merge pull request #3665 from turol/fix-warning

Silence uninitialized variable warning in 3MF importer
Turo Lamminen %!s(int64=4) %!d(string=hai) anos
pai
achega
2bac0a6989
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      code/AssetLib/3MF/D3MFImporter.cpp

+ 1 - 1
code/AssetLib/3MF/D3MFImporter.cpp

@@ -427,7 +427,7 @@ private:
                 aiFace face = ReadTriangle(currentNode);
                 aiFace face = ReadTriangle(currentNode);
                 faces.push_back(face);
                 faces.push_back(face);
 
 
-                int pid, p1;
+                int pid = 0, p1;
                 bool hasPid = getNodeAttribute(currentNode, D3MF::XmlTag::pid, pid);
                 bool hasPid = getNodeAttribute(currentNode, D3MF::XmlTag::pid, pid);
                 bool hasP1 = getNodeAttribute(currentNode, D3MF::XmlTag::p1, p1);
                 bool hasP1 = getNodeAttribute(currentNode, D3MF::XmlTag::p1, p1);