mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Issue #9611: remove useless and dangerous explicit conversion to size_t
This commit is contained in:
parent
51e2107b81
commit
7234479580
2 changed files with 3 additions and 3 deletions
|
@ -530,7 +530,7 @@ fileio_readinto(fileio *self, PyObject *args)
|
|||
len = INT_MAX;
|
||||
n = read(self->fd, pbuf.buf, (int)len);
|
||||
#else
|
||||
n = read(self->fd, pbuf.buf, (size_t)len);
|
||||
n = read(self->fd, pbuf.buf, len);
|
||||
#endif
|
||||
Py_END_ALLOW_THREADS
|
||||
} else
|
||||
|
@ -716,7 +716,7 @@ fileio_write(fileio *self, PyObject *args)
|
|||
len = INT_MAX;
|
||||
n = write(self->fd, pbuf.buf, (int)len);
|
||||
#else
|
||||
n = write(self->fd, pbuf.buf, (size_t)len);
|
||||
n = write(self->fd, pbuf.buf, len);
|
||||
#endif
|
||||
Py_END_ALLOW_THREADS
|
||||
} else
|
||||
|
|
|
@ -5712,7 +5712,7 @@ posix_write(PyObject *self, PyObject *args)
|
|||
len = INT_MAX;
|
||||
size = write(fd, pbuf.buf, (int)len);
|
||||
#else
|
||||
size = write(fd, pbuf.buf, (size_t)len);
|
||||
size = write(fd, pbuf.buf, len);
|
||||
#endif
|
||||
Py_END_ALLOW_THREADS
|
||||
PyBuffer_Release(&pbuf);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue