Merge pull request #348 from nikmolnar/master

Fix for #254
This commit is contained in:
Alex Clark ☺ 2013-09-30 02:41:12 -07:00
commit a0eaf06cc5

View File

@ -36,6 +36,7 @@
#include "Imaging.h"
#include <string.h>
int ImagingNewCount = 0;
@ -333,6 +334,7 @@ ImagingNewBlock(const char *mode, int xsize, int ysize)
im->block = (char *) malloc(bytes);
if (im->block) {
memset(im->block, 0, bytes);
for (y = i = 0; y < im->ysize; y++) {
im->image[y] = im->block + i;