Merge pull request #3901 from radarhere/typo

Fixed typo
This commit is contained in:
Hugo 2019-06-17 11:49:42 +03:00 committed by GitHub
commit 937b6983d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -405,7 +405,7 @@ ImagingAllocateArray(Imaging im, int dirty, int block_size)
// printf("NEW size: %dx%d, ls: %d, lpb: %d, blocks: %d\n",
// im->xsize, im->ysize, aligned_linesize, lines_per_block, blocks_count);
/* One extra ponter is always NULL */
/* One extra pointer is always NULL */
im->blocks = calloc(sizeof(*im->blocks), blocks_count + 1);
if ( ! im->blocks) {
return (Imaging) ImagingError_MemoryError();