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>2019-06-01 00:20:47 +0300
committerDalai Felinto <dfelinto@gmail.com>2019-06-01 00:41:18 +0300
commitd5b813301a81a7ec13996dfcb3a9bc88f56e4018 (patch)
tree81ac83b1a61544bf1a9e484eb09d83a9539dbdd1 /source/blender/editors/mesh
parent6f9518f2438ecca411cee85303f255cea853545b (diff)
Fix T65330: Blender crash when double click on face
The fix itself is by Germano Cavalcante (mano-wii). But since I was investigating this with him, I'm including here an assert in EDBM_select_id_bm_elem_get to help catching this sooner in the future
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_select.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c
index 6a91fcb8327..75d685fb9c6 100644
--- a/source/blender/editors/mesh/editmesh_select.c
+++ b/source/blender/editors/mesh/editmesh_select.c
@@ -302,6 +302,11 @@ BMElem *EDBM_select_id_bm_elem_get(struct EDBMSelectID_Context *sel_id_ctx,
}
}
+ if (base_index >= sel_id_ctx->bases_len) {
+ BLI_assert(0);
+ return NULL;
+ }
+
if (r_base_index) {
*r_base_index = base_index;
}