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:
authorHans Goudey <h.goudey@me.com>2020-10-22 20:20:34 +0300
committerHans Goudey <h.goudey@me.com>2020-10-22 20:20:34 +0300
commit3953833b60d73a1560f5ec70fd449113da4b83c9 (patch)
treebf806bb1c3fd218d158d770c4a122b628900f4bc /source
parent383c20a6abd6591a3a402504b37fdecaa64fde0f (diff)
Fix T81967: Crash when using extrude on a text object
Caused by rBa308607a5334, which mistakenly removed these lines.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/displist.c3
1 files changed, 3 insertions, 0 deletions
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) {