From: Tony Cook Date: Sun, 6 May 2001 07:49:52 +0000 (+0000) Subject: oops, forgot to free the memory I allocated X-Git-Tag: Imager-0.48^2~687 X-Git-Url: http://git.imager.perl.org/imager.git/commitdiff_plain/1f235e0d49d3224ab296b5a07476a088de5e9cfd oops, forgot to free the memory I allocated --- diff --git a/image.c b/image.c index a4c2b309..767288f8 100644 --- a/image.c +++ b/image.c @@ -668,6 +668,7 @@ i_copy(i_img *im, i_img *src) { i_glin(src, 0, x1, y, pv); i_plin(im, 0, x1, y, pv); } + myfree(pv); }