diff options
author | Kristján Valur Jónsson <sweskman@gmail.com> | 2014-03-05 13:47:57 (GMT) |
---|---|---|
committer | Kristján Valur Jónsson <sweskman@gmail.com> | 2014-03-05 13:47:57 (GMT) |
commit | 25dded041fe532fcb041b6e68582bf76b4968132 (patch) | |
tree | 3c70fceb3fe5ef98a17b85aa94704d20eb5a853d /Objects/bytesobject.c | |
parent | 4ca688edeb07de955e1ef67c11f0e327f12ffa6e (diff) | |
download | cpython-25dded041fe532fcb041b6e68582bf76b4968132.zip cpython-25dded041fe532fcb041b6e68582bf76b4968132.tar.gz cpython-25dded041fe532fcb041b6e68582bf76b4968132.tar.bz2 |
Make the various iterators' "setstate" sliently and consistently clip the
index. This avoids the possibility of setting an iterator to an invalid
state.
Diffstat (limited to 'Objects/bytesobject.c')
-rw-r--r-- | Objects/bytesobject.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c index 9dcb74e..f6d16da 100644 --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -2996,9 +2996,13 @@ striter_setstate(striterobject *it, PyObject *state) Py_ssize_t index = PyLong_AsSsize_t(state); if (index == -1 && PyErr_Occurred()) return NULL; - if (index < 0) - index = 0; - it->it_index = index; + if (it->it_seq != NULL) { + if (index < 0) + index = 0; + else if (index > PyBytes_GET_SIZE(it->it_seq)) + index = PyBytes_GET_SIZE(it->it_seq); /* iterator exhausted */ + it->it_index = index; + } Py_RETURN_NONE; } |