[Bf-blender-cvs] [3953833b60d] master: Fix T81967: Crash when using extrude on a text object

Hans Goudey noreply at git.blender.org
Thu Oct 22 19:21:24 CEST 2020


Commit: 3953833b60d73a1560f5ec70fd449113da4b83c9
Author: Hans Goudey
Date:   Thu Oct 22 12:20:34 2020 -0500
Branches: master
https://developer.blender.org/rB3953833b60d73a1560f5ec70fd449113da4b83c9

Fix T81967: Crash when using extrude on a text object

Caused by rBa308607a5334, which mistakenly removed these lines.

===================================================================

M	source/blender/blenkernel/intern/displist.c

===================================================================

diff --git a/source/blender/blenkernel/intern/displist.c b/source/blender/blenkernel/intern/displist.c
index f47f350a435..ff03731b2aa 100644
--- a/source/blender/blenkernel/intern/displist.c
+++ b/source/blender/blenkernel/intern/displist.c
@@ -607,6 +607,9 @@ static void bevels_to_filledpoly(Curve *cu, ListBase *dispbase)
   float *fp, *fp1;
   int a, dpoly;
 
+  BLI_listbase_clear(&front);
+  BLI_listbase_clear(&back);
+
   LISTBASE_FOREACH (DispList *, dl, dispbase) {
     if (dl->type == DL_SURF) {
       if ((dl->flag & DL_CYCL_V) && (dl->flag & DL_CYCL_U) == 0) {



More information about the Bf-blender-cvs mailing list