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:
authorAntonio Vazquez <blendergit@gmail.com>2022-05-22 22:10:08 +0300
committerAntonio Vazquez <blendergit@gmail.com>2022-05-22 22:10:08 +0300
commit84e55e3dc2516d3e440b96fb67d5d9b43b81d039 (patch)
tree736fa395ec6ce413078680dbb29568668427a87c /source/blender/gpencil_modifiers
parentbf352df27a6f85d73bc0d6417f50fd62958cfb6e (diff)
Fix T98320: GPencil Crash with Length and Build Modifiers
The length modifiers creates a NULL strokes and this is not handled by Build modifier.
Diffstat (limited to 'source/blender/gpencil_modifiers')
-rw-r--r--source/blender/gpencil_modifiers/intern/MOD_gpencilbuild.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpencil_modifiers/intern/MOD_gpencilbuild.c b/source/blender/gpencil_modifiers/intern/MOD_gpencilbuild.c
index 930ebb78b46..88515d849bc 100644
--- a/source/blender/gpencil_modifiers/intern/MOD_gpencilbuild.c
+++ b/source/blender/gpencil_modifiers/intern/MOD_gpencilbuild.c
@@ -109,7 +109,7 @@ static void reduce_stroke_points(bGPdata *gpd,
const int points_num,
const eBuildGpencil_Transition transition)
{
- if (points_num == 0) {
+ if ((points_num == 0) || (gps->points == NULL)) {
clear_stroke(gpf, gps);
return;
}