Fixed typos

This commit is contained in:
Andrew Murray 2018-01-14 12:09:05 +11:00
parent 7e4fdb1097
commit 25e72d5856
3 changed files with 4 additions and 4 deletions

View File

@ -140,7 +140,7 @@ Changelog (Pillow)
- GIF: Permit LZW code lengths up to 12 bits in GIF decode #2813 - GIF: Permit LZW code lengths up to 12 bits in GIF decode #2813
[wiredfool] [wiredfool]
- Fix unterminiated string and unchecked exception in _font_text_asBytes. #2825 - Fix unterminated string and unchecked exception in _font_text_asBytes. #2825
[wiredfool] [wiredfool]
- PPM: Use fixed list of whitespace, rather relying on locale, fixes #272. #2831 - PPM: Use fixed list of whitespace, rather relying on locale, fixes #272. #2831

View File

@ -724,7 +724,7 @@ def _save(im, fp, filename):
) )
# if we optimize, libjpeg needs a buffer big enough to hold the whole image # if we optimize, libjpeg needs a buffer big enough to hold the whole image
# in a shot. Guessing on the size, at im.size bytes. (raw pizel size is # in a shot. Guessing on the size, at im.size bytes. (raw pixel size is
# channels*size, this is a value that's been used in a django patch. # channels*size, this is a value that's been used in a django patch.
# https://github.com/matthewwithanm/django-imagekit/issues/50 # https://github.com/matthewwithanm/django-imagekit/issues/50
bufsize = 0 bufsize = 0

View File

@ -327,7 +327,7 @@ memory_get_block(ImagingMemoryArena arena, int requested_size, int dirty)
block.ptr = realloc(block.ptr, requested_size); block.ptr = realloc(block.ptr, requested_size);
} }
if ( ! block.ptr) { if ( ! block.ptr) {
// Can't allocate, free prevous pointer (it is still valid) // Can't allocate, free previous pointer (it is still valid)
free(arena->blocks_pool[arena->blocks_cached].ptr); free(arena->blocks_pool[arena->blocks_cached].ptr);
arena->stats_freed_blocks += 1; arena->stats_freed_blocks += 1;
return block; return block;
@ -490,7 +490,7 @@ ImagingAllocateBlock(Imaging im)
im->image[y] = im->block + i; im->image[y] = im->block + i;
i += im->linesize; i += im->linesize;
} }
im->destroy = ImagingDestroyBlock; im->destroy = ImagingDestroyBlock;
return im; return im;