From 84e55e3dc2516d3e440b96fb67d5d9b43b81d039 Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Sun, 22 May 2022 21:10:08 +0200 Subject: Fix T98320: GPencil Crash with Length and Build Modifiers The length modifiers creates a NULL strokes and this is not handled by Build modifier. --- source/blender/gpencil_modifiers/intern/MOD_gpencilbuild.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/gpencil_modifiers') 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; } -- cgit v1.2.3