From: Arnar Mar Hrafnkelsson Date: Thu, 1 Nov 2001 15:02:59 +0000 (+0000) Subject: Missing myfree() in the default path of bmp loading. X-Git-Tag: Imager-0.48^2~494 X-Git-Url: http://git.imager.perl.org/imager.git/commitdiff_plain/12d258260fdeecfccd34bb092cab01e1f353e4d3 Missing myfree() in the default path of bmp loading. --- diff --git a/bmp.c b/bmp.c index 5d99d207..6c9faea6 100644 --- a/bmp.c +++ b/bmp.c @@ -861,6 +861,7 @@ read_8bit_bmp(io_glue *ig, int xsize, int ysize, int clr_used, i_ppal(im, 0, xsize, y, line); y += yinc; } + myfree(line); } else if (compression == BI_RLE8) { int read_size;