From a297a6c444c7463295f0447a55a5f9542414529c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Mar 2020 07:54:52 +1100 Subject: Cleanup: replace unnecessary MEM_callocN calls Use MEM_mallocN when memory is immediately copied over. --- source/blender/editors/gpencil/gpencil_edit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/gpencil/gpencil_edit.c') diff --git a/source/blender/editors/gpencil/gpencil_edit.c b/source/blender/editors/gpencil/gpencil_edit.c index ee4a26475b9..1931f35922a 100644 --- a/source/blender/editors/gpencil/gpencil_edit.c +++ b/source/blender/editors/gpencil/gpencil_edit.c @@ -677,12 +677,12 @@ static void gp_duplicate_points(const bGPDstroke *gps, gpsd->tot_triangles = 0; /* now, make a new points array, and copy of the relevant parts */ - gpsd->points = MEM_callocN(sizeof(bGPDspoint) * len, "gps stroke points copy"); + gpsd->points = MEM_mallocN(sizeof(bGPDspoint) * len, "gps stroke points copy"); memcpy(gpsd->points, gps->points + start_idx, sizeof(bGPDspoint) * len); gpsd->totpoints = len; if (gps->dvert != NULL) { - gpsd->dvert = MEM_callocN(sizeof(MDeformVert) * len, "gps stroke weights copy"); + gpsd->dvert = MEM_mallocN(sizeof(MDeformVert) * len, "gps stroke weights copy"); memcpy(gpsd->dvert, gps->dvert + start_idx, sizeof(MDeformVert) * len); /* Copy weights */ -- cgit v1.2.3