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
path: root/source
diff options
context:
space:
mode:
authorWannes Malfait <Wannes>2021-04-29 12:18:21 +0300
committerAnkit Meel <ankitjmeel@gmail.com>2021-04-29 12:42:38 +0300
commit8c73f44a019cd087436184484d7200a8f709a6e1 (patch)
treed714db431aea0b32def552a73365a45e5dff80a4 /source
parent73af884df004171bacffb82f3ff7f6e627a12690 (diff)
Fix build error: use of unintialized variable
Differential Revision: https://developer.blender.org/D11115
Diffstat (limited to 'source')
-rw-r--r--source/blender/bmesh/tools/bmesh_bisect_plane.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/tools/bmesh_bisect_plane.c b/source/blender/bmesh/tools/bmesh_bisect_plane.c
index 40ac6c0348c..f840a3770ff 100644
--- a/source/blender/bmesh/tools/bmesh_bisect_plane.c
+++ b/source/blender/bmesh/tools/bmesh_bisect_plane.c
@@ -208,7 +208,7 @@ static void bm_face_bisect_verts(
}
else {
- uint i;
+ uint i = 0;
/* ---- */
/* Check contiguous spans of centered vertices (skipping when necessary). */