mirror of
https://github.com/python/cpython.git
synced 2025-08-19 00:00:48 +00:00
Merged revisions 77821 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77821 | mark.dickinson | 2010-01-29 17:11:39 +0000 (Fri, 29 Jan 2010) | 3 lines Issue #7788: Fix a crash produced by deleting a list slice with huge step value. Patch by Marcin Bachry. ........
This commit is contained in:
parent
ae03bc5488
commit
0273354ab6
7 changed files with 17 additions and 5 deletions
|
@ -699,7 +699,8 @@ bytes_ass_subscript(PyByteArrayObject *self, PyObject *index, PyObject *values)
|
|||
else {
|
||||
if (needed == 0) {
|
||||
/* Delete slice */
|
||||
Py_ssize_t cur, i;
|
||||
size_t cur;
|
||||
Py_ssize_t i;
|
||||
|
||||
if (!_canresize(self))
|
||||
return -1;
|
||||
|
|
|
@ -2604,7 +2604,8 @@ list_ass_subscript(PyListObject* self, PyObject* item, PyObject* value)
|
|||
if (value == NULL) {
|
||||
/* delete slice */
|
||||
PyObject **garbage;
|
||||
Py_ssize_t cur, i;
|
||||
size_t cur;
|
||||
Py_ssize_t i;
|
||||
|
||||
if (slicelength <= 0)
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue