Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-06-30 04:41:49 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-06-30 04:42:37 +0400
commitea3c2eb15d276bdd27d2144da2d80f6474f96b8e (patch)
tree87d9d37c78e96ef46485f41ea2c7e95dd15ab7a6 /source/blender/freestyle/intern
parentf3f991c80fa92ccb7a831b8e8449ff5f21065a9d (diff)
Attempt to fix T40833: Crash when rendering with freestyle.
Constant crashes under Linux seem due to an uninitialized variable.
Diffstat (limited to 'source/blender/freestyle/intern')
-rw-r--r--source/blender/freestyle/intern/winged_edge/WEdge.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/winged_edge/WEdge.h b/source/blender/freestyle/intern/winged_edge/WEdge.h
index 6699a8113b6..41525e03d8e 100644
--- a/source/blender/freestyle/intern/winged_edge/WEdge.h
+++ b/source/blender/freestyle/intern/winged_edge/WEdge.h
@@ -1295,7 +1295,9 @@ protected:
class WingedEdge
{
public:
- WingedEdge() {}
+ WingedEdge() {
+ _numFaces = 0;
+ }
~WingedEdge()
{