mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-25 01:16:16 +03:00
Switching to strncpy, fixing potential buffer overflow in palette as well
This commit is contained in:
parent
66965b6bb4
commit
b5335c0cf3
|
@ -41,7 +41,7 @@ ImagingHistogramNew(Imaging im)
|
|||
|
||||
/* Create histogram descriptor */
|
||||
h = calloc(1, sizeof(struct ImagingHistogramInstance));
|
||||
strcpy(h->mode, im->mode);
|
||||
strncpy(h->mode, im->mode, IMAGING_MODE_LENGTH);
|
||||
h->bands = im->bands;
|
||||
h->histogram = calloc(im->pixelsize, 256 * sizeof(long));
|
||||
|
||||
|
|
|
@ -141,7 +141,7 @@ struct ImagingHistogramInstance {
|
|||
struct ImagingPaletteInstance {
|
||||
|
||||
/* Format */
|
||||
char mode[4+1]; /* Band names */
|
||||
char mode[IMAGING_MODE_LENGTH]; /* Band names */
|
||||
|
||||
/* Data */
|
||||
UINT8 palette[1024];/* Palette data (same format as image data) */
|
||||
|
|
|
@ -37,7 +37,7 @@ ImagingPaletteNew(const char* mode)
|
|||
if (!palette)
|
||||
return (ImagingPalette) ImagingError_MemoryError();
|
||||
|
||||
strcpy(palette->mode, mode);
|
||||
strncpy(palette->mode, mode, IMAGING_MODE_LENGTH);
|
||||
|
||||
/* Initialize to ramp */
|
||||
for (i = 0; i < 256; i++) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user