Change comment style

This commit is contained in:
Andrew Murray 2024-04-28 22:49:56 +10:00
parent 5597f618a3
commit 996c053d89

View File

@ -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++) {