[Bf-blender-cvs] [dff17b0893c] blender-v2.93-release: Fix T92185: GPencil memory leak removing stroke from python

Antonio Vazquez noreply at git.blender.org
Tue Nov 2 13:52:39 CET 2021


Commit: dff17b0893c5c8c23c68531557109d1f053933ac
Author: Antonio Vazquez
Date:   Wed Oct 13 16:22:17 2021 +0200
Branches: blender-v2.93-release
https://developer.blender.org/rBdff17b0893c5c8c23c68531557109d1f053933ac

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 44de5955c41..149b0d293e3 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