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>2013-08-24 15:42:00 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-08-24 15:42:00 +0400
commit248e3d74a0382dcdf5baf19336ed97e98220fafc (patch)
treed2165e8f4fd557c2fdfdca3c8a0c2e1c62127727 /source/blender/freestyle/intern/application/Controller.h
parentaf1c274be72b8f42cb15463aebf3b513d1bdb3d4 (diff)
Fix for [#36374] Read unitialized memory in Freestyle.
A variable keeping a bounding box was referenced after it was flagged as empty.
Diffstat (limited to 'source/blender/freestyle/intern/application/Controller.h')
-rw-r--r--source/blender/freestyle/intern/application/Controller.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/freestyle/intern/application/Controller.h b/source/blender/freestyle/intern/application/Controller.h
index d4537f5f987..f5e50347d0f 100644
--- a/source/blender/freestyle/intern/application/Controller.h
+++ b/source/blender/freestyle/intern/application/Controller.h
@@ -211,6 +211,7 @@ private:
FastGrid _Grid;
//HashGrid _Grid;
+ BBox<Vec3r> _Scene3dBBox;
unsigned int _SceneNumFaces;
real _minEdgeSize;
real _EPSILON;