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:
authorDalai Felinto <dfelinto@gmail.com>2016-06-20 19:02:53 +0300
committerDalai Felinto <dfelinto@gmail.com>2016-06-20 19:02:53 +0300
commit72273b08cc21467f207cf61243c979cc47b790c5 (patch)
tree298d313aa530a5adf4d8a61520725002b34f6341 /source/blender
parent61b49de449404ecb51902113e7b568ed49f9c3aa (diff)
Fix building for Windows after 57cff46v (booleans unitialized)
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/bmesh/tools/bmesh_decimate_collapse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/tools/bmesh_decimate_collapse.c b/source/blender/bmesh/tools/bmesh_decimate_collapse.c
index 1c8be09ab4d..acb220bdf21 100644
--- a/source/blender/bmesh/tools/bmesh_decimate_collapse.c
+++ b/source/blender/bmesh/tools/bmesh_decimate_collapse.c
@@ -542,8 +542,8 @@ static bool bm_decim_triangulate_begin(BMesh *bm, int *r_edges_tri_tot)
{
BMIter iter;
BMFace *f;
- bool has_quad;
- bool has_ngon;
+ bool has_quad = false;
+ bool has_ngon = false;
bool has_cut = false;
BLI_assert((bm->elem_index_dirty & BM_VERT) == 0);