From e8c24ee0d9262fe648f4bd8f13e1a2f1f88ae050 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 24 Feb 2016 00:31:46 +1100 Subject: Fix memory leak running project-paint from Python --- source/blender/editors/sculpt_paint/paint_image.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'source/blender/editors/sculpt_paint/paint_image.c') diff --git a/source/blender/editors/sculpt_paint/paint_image.c b/source/blender/editors/sculpt_paint/paint_image.c index 377ba3d020b..4d8255353f3 100644 --- a/source/blender/editors/sculpt_paint/paint_image.c +++ b/source/blender/editors/sculpt_paint/paint_image.c @@ -954,7 +954,6 @@ static int paint_invoke(bContext *C, wmOperator *op, const wmEvent *event) static int paint_exec(bContext *C, wmOperator *op) { - PaintOperation *pop; PropertyRNA *strokeprop; PointerRNA firstpoint; float mouse[2]; @@ -966,18 +965,12 @@ static int paint_exec(bContext *C, wmOperator *op) RNA_float_get_array(&firstpoint, "mouse", mouse); - if (!(pop = texture_paint_init(C, op, mouse))) { - return OPERATOR_CANCELLED; - } - op->customdata = paint_stroke_new(C, op, NULL, paint_stroke_test_start, paint_stroke_update_step, paint_stroke_redraw, paint_stroke_done, 0); /* frees op->customdata */ - paint_stroke_exec(C, op); - - return OPERATOR_FINISHED; + return paint_stroke_exec(C, op); } void PAINT_OT_image_paint(wmOperatorType *ot) -- cgit v1.2.3