Merge #12973 itertools fix.

This commit is contained in:
Mark Dickinson 2011-09-24 08:57:00 +01:00
commit a61b053e61
2 changed files with 6 additions and 4 deletions

View file

@ -1234,7 +1234,9 @@ islice_next(isliceobject *lz)
return NULL;
lz->cnt++;
oldnext = lz->next;
lz->next += lz->step;
/* The (size_t) cast below avoids the danger of undefined
behaviour from signed integer overflow. */
lz->next += (size_t)lz->step;
if (lz->next < oldnext || (stop != -1 && lz->next > stop))
lz->next = stop;
return item;