[Bf-blender-cvs] [51ea08487bf] master: Fix T92185: GPencil memory leak removing stroke from python

Antonio Vazquez noreply at git.blender.org
Wed Oct 13 16:22:35 CEST 2021


Commit: 51ea08487bf8debab4163f1bfe3f2495c50bc403
Author: Antonio Vazquez
Date:   Wed Oct 13 16:22:17 2021 +0200
Branches: master
https://developer.blender.org/rB51ea08487bf8debab4163f1bfe3f2495c50bc403

Fix T92185: GPencil memory leak removing stroke from python

The API was not removing the weights, points and traingulation data. Only it was removing the stroke itself.

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

M	source/blender/makesrna/intern/rna_gpencil.c

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

diff --git a/source/blender/makesrna/intern/rna_gpencil.c b/source/blender/makesrna/intern/rna_gpencil.c
index 2bce5f3f4b3..3f380cd1830 100644
--- a/source/blender/makesrna/intern/rna_gpencil.c
+++ b/source/blender/makesrna/intern/rna_gpencil.c
@@ -906,7 +906,8 @@ static void rna_GPencil_stroke_remove(ID *id,
     return;
   }
 
-  BLI_freelinkN(&frame->strokes, stroke);
+  BLI_remlink(&frame->strokes, stroke);
+  BKE_gpencil_free_stroke(stroke);
   RNA_POINTER_INVALIDATE(stroke_ptr);
 
   DEG_id_tag_update(&gpd->id, ID_RECALC_TRANSFORM | ID_RECALC_GEOMETRY | ID_RECALC_COPY_ON_WRITE);



More information about the Bf-blender-cvs mailing list