Skip to content

Commit ee796c6

Browse files
authored
Rollup merge of #82289 - SkiFire13:fix-issue-82282, r=m-ou-se
Fix underflow in specialized ZipImpl::size_hint Fixes #82282
2 parents 20887b7 + aeb4ea7 commit ee796c6

File tree

2 files changed

+22
-1
lines changed
  • library/core

2 files changed

+22
-1
lines changed

library/core/src/iter/adapters/zip.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ where
200200
} else if A::MAY_HAVE_SIDE_EFFECT && self.index < self.a.size() {
201201
let i = self.index;
202202
self.index += 1;
203+
self.len += 1;
203204
// match the base implementation's potential side effects
204205
// SAFETY: we just checked that `i` < `self.a.len()`
205206
unsafe {
@@ -258,7 +259,7 @@ where
258259
if sz_a != sz_b {
259260
let sz_a = self.a.size();
260261
if A::MAY_HAVE_SIDE_EFFECT && sz_a > self.len {
261-
for _ in 0..sz_a - cmp::max(self.len, self.index) {
262+
for _ in 0..sz_a - self.len {
262263
self.a.next_back();
263264
}
264265
}

library/core/tests/iter/adapters/zip.rs

+20
Original file line numberDiff line numberDiff line change
@@ -245,3 +245,23 @@ fn test_double_ended_zip() {
245245
assert_eq!(it.next_back(), Some((3, 3)));
246246
assert_eq!(it.next(), None);
247247
}
248+
249+
#[test]
250+
fn test_issue_82282() {
251+
fn overflowed_zip(arr: &[i32]) -> impl Iterator<Item = (i32, &())> {
252+
static UNIT_EMPTY_ARR: [(); 0] = [];
253+
254+
let mapped = arr.into_iter().map(|i| *i);
255+
let mut zipped = mapped.zip(UNIT_EMPTY_ARR.iter());
256+
zipped.next();
257+
zipped
258+
}
259+
260+
let arr = [1, 2, 3];
261+
let zip = overflowed_zip(&arr).zip(overflowed_zip(&arr));
262+
263+
assert_eq!(zip.size_hint(), (0, Some(0)));
264+
for _ in zip {
265+
panic!();
266+
}
267+
}

0 commit comments

Comments
 (0)