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
Notes: blender-bot 2023-02-14 10:30:42 +01:00
Referenced by issue #40912, Collision Callbacks Don't Work if Set Directly
Referenced by issue #40888, Memory error when selecting Cycles render engine
Referenced by issue #40833, Crash when rendering with freestyle
Referenced by issue #40581, Wrong texture mapping in render preview
1 changed files with 3 additions and 1 deletions

View File

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