mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Change comment style
This commit is contained in:
parent
5597f618a3
commit
996c053d89
|
@ -231,9 +231,9 @@ ImagingFliDecode(Imaging im, ImagingCodecState state, UINT8 *buf, Py_ssize_t byt
|
||||||
}
|
}
|
||||||
/* Note, have to check Data + size, not just ptr + size) */
|
/* Note, have to check Data + size, not just ptr + size) */
|
||||||
if (data + (state->xsize * state->ysize) > ptr + bytes) {
|
if (data + (state->xsize * state->ysize) > ptr + bytes) {
|
||||||
/* not enough data for frame */
|
// not enough data for frame
|
||||||
/* UNDONE Unclear that we're actually going to leave the buffer at
|
// UNDONE Unclear that we're actually going to leave the buffer at
|
||||||
* the right place. */
|
// the right place.
|
||||||
return ptr - buf; /* bytes consumed */
|
return ptr - buf; /* bytes consumed */
|
||||||
}
|
}
|
||||||
for (y = 0; y < state->ysize; y++) {
|
for (y = 0; y < state->ysize; y++) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user