Skip to content

Commit 60651fe

Browse files
authored
Unrolled build for rust-lang#120505
Rollup merge of rust-lang#120505 - Amanieu:fix-btreemap-cursor-remove, r=m-ou-se Fix BTreeMap's Cursor::remove_{next,prev} These would incorrectly leave `current` as `None` after a failed attempt to remove an element (due to the cursor already being at the start/end).
2 parents 62fb0db + adb7607 commit 60651fe

File tree

1 file changed

+12
-0
lines changed
  • library/alloc/src/collections/btree

1 file changed

+12
-0
lines changed

library/alloc/src/collections/btree/map.rs

+12
Original file line numberDiff line numberDiff line change
@@ -3247,9 +3247,15 @@ impl<'a, K: Ord, V, A: Allocator + Clone> CursorMutKey<'a, K, V, A> {
32473247
#[unstable(feature = "btree_cursors", issue = "107540")]
32483248
pub fn remove_next(&mut self) -> Option<(K, V)> {
32493249
let current = self.current.take()?;
3250+
if current.reborrow().next_kv().is_err() {
3251+
self.current = Some(current);
3252+
return None;
3253+
}
32503254
let mut emptied_internal_root = false;
32513255
let (kv, pos) = current
32523256
.next_kv()
3257+
// This should be unwrap(), but that doesn't work because NodeRef
3258+
// doesn't implement Debug. The condition is checked above.
32533259
.ok()?
32543260
.remove_kv_tracking(|| emptied_internal_root = true, self.alloc.clone());
32553261
self.current = Some(pos);
@@ -3270,9 +3276,15 @@ impl<'a, K: Ord, V, A: Allocator + Clone> CursorMutKey<'a, K, V, A> {
32703276
#[unstable(feature = "btree_cursors", issue = "107540")]
32713277
pub fn remove_prev(&mut self) -> Option<(K, V)> {
32723278
let current = self.current.take()?;
3279+
if current.reborrow().next_back_kv().is_err() {
3280+
self.current = Some(current);
3281+
return None;
3282+
}
32733283
let mut emptied_internal_root = false;
32743284
let (kv, pos) = current
32753285
.next_back_kv()
3286+
// This should be unwrap(), but that doesn't work because NodeRef
3287+
// doesn't implement Debug. The condition is checked above.
32763288
.ok()?
32773289
.remove_kv_tracking(|| emptied_internal_root = true, self.alloc.clone());
32783290
self.current = Some(pos);

0 commit comments

Comments
 (0)