mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)
raised an error. Replace them with using concrete types API that never fails if appropriate.
This commit is contained in:
parent
c209b70d61
commit
bf623ae884
14 changed files with 108 additions and 48 deletions
|
@ -618,7 +618,8 @@ iobase_iternext(PyObject *self)
|
|||
if (line == NULL)
|
||||
return NULL;
|
||||
|
||||
if (PyObject_Size(line) == 0) {
|
||||
if (PyObject_Size(line) <= 0) {
|
||||
/* Error or empty */
|
||||
Py_DECREF(line);
|
||||
return NULL;
|
||||
}
|
||||
|
@ -670,6 +671,7 @@ _io__IOBase_readlines_impl(PyObject *self, Py_ssize_t hint)
|
|||
}
|
||||
|
||||
while (1) {
|
||||
Py_ssize_t line_length;
|
||||
PyObject *line = PyIter_Next(it);
|
||||
if (line == NULL) {
|
||||
if (PyErr_Occurred()) {
|
||||
|
@ -683,11 +685,14 @@ _io__IOBase_readlines_impl(PyObject *self, Py_ssize_t hint)
|
|||
Py_DECREF(line);
|
||||
goto error;
|
||||
}
|
||||
length += PyObject_Size(line);
|
||||
line_length = PyObject_Size(line);
|
||||
Py_DECREF(line);
|
||||
|
||||
if (length > hint)
|
||||
if (line_length < 0) {
|
||||
goto error;
|
||||
}
|
||||
if (line_length > hint - length)
|
||||
break;
|
||||
length += line_length;
|
||||
}
|
||||
|
||||
Py_DECREF(it);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue