Attempt to fix T40833: Crash when rendering with freestyle.

Constant crashes under Linux seem due to an uninitialized variable.
This commit is contained in:
Tamito Kajiyama
2014-06-30 09:41:49 +09:00
parent f3f991c80f
commit ea3c2eb15d

View File

@@ -1295,7 +1295,9 @@ protected:
class WingedEdge
{
public:
WingedEdge() {}
WingedEdge() {
_numFaces = 0;
}
~WingedEdge()
{