From 703b2d269a0d1e1be92e89f5d6b070ab9d3be31b Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sat, 13 Apr 2013 16:08:14 +0000 Subject: Release 10.62.02 git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@1880 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- converter/ppm/ppmtowinicon.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'converter/ppm') diff --git a/converter/ppm/ppmtowinicon.c b/converter/ppm/ppmtowinicon.c index 836c55d8..c673798f 100644 --- a/converter/ppm/ppmtowinicon.c +++ b/converter/ppm/ppmtowinicon.c @@ -204,18 +204,13 @@ createAndBitmap (gray ** const ba, int const cols, int const rows, * How wide should the u1 string for each row be? * each byte is 8 pixels, but must be a multiple of 4 bytes. */ + unsigned int const xBytes = ROUNDUP(cols, 32)/8; ICON_bmp icBitmap; - int xBytes,y,x; - int wt = cols; + int y,x; u1 ** rowData; MALLOCVAR_NOFAIL(icBitmap); - wt >>= 3; - if (wt & 3) { - wt = (wt & ~3) + 4; - } - xBytes = wt; MALLOCARRAY_NOFAIL(rowData, rows); icBitmap->xBytes = xBytes; icBitmap->data = rowData; -- cgit 1.4.1