Skip to content

Commit e5987a0

Browse files
Format
1 parent 52d6c90 commit e5987a0

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

src/liballoc/collections/linked_list.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -1566,10 +1566,13 @@ where
15661566
{
15671567
fn drop(&mut self) {
15681568
struct DropGuard<'r, 'a, T, F>(&'r mut DrainFilter<'a, T, F>)
1569-
where F: FnMut(&mut T) -> bool;
1569+
where
1570+
F: FnMut(&mut T) -> bool;
15701571

15711572
impl<'r, 'a, T, F> Drop for DropGuard<'r, 'a, T, F>
1572-
where F: FnMut(&mut T) -> bool {
1573+
where
1574+
F: FnMut(&mut T) -> bool,
1575+
{
15731576
fn drop(&mut self) {
15741577
self.0.for_each(drop);
15751578
}

src/liballoc/tests/linked_list.rs

+5-6
Original file line numberDiff line numberDiff line change
@@ -590,13 +590,12 @@ fn drain_filter_pred_panic_leak() {
590590
q.push_front(D(1));
591591
q.push_front(D(0));
592592

593-
catch_unwind(AssertUnwindSafe(|| drop(q.drain_filter(|item| if item.0 >= 2 {
594-
panic!()
595-
} else {
596-
true
597-
})))).ok();
593+
catch_unwind(AssertUnwindSafe(|| {
594+
drop(q.drain_filter(|item| if item.0 >= 2 { panic!() } else { true }))
595+
}))
596+
.ok();
598597

599-
assert_eq!(unsafe { DROPS }, 2); // 0 and 1
598+
assert_eq!(unsafe { DROPS }, 2); // 0 and 1
600599
assert_eq!(q.len(), 6);
601600
}
602601

src/liballoc/tests/vec.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -783,11 +783,7 @@ fn test_into_iter_leak() {
783783
}
784784
}
785785

786-
let v = vec![
787-
D(false),
788-
D(true),
789-
D(false),
790-
];
786+
let v = vec![D(false), D(true), D(false)];
791787

792788
catch_unwind(move || drop(v.into_iter())).ok();
793789

src/liballoc/tests/vec_deque.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::collections::TryReserveError::*;
22
use std::collections::{vec_deque::Drain, VecDeque};
33
use std::fmt::Debug;
44
use std::mem::size_of;
5-
use std::panic::{AssertUnwindSafe, catch_unwind};
5+
use std::panic::{catch_unwind, AssertUnwindSafe};
66
use std::{isize, usize};
77

88
use crate::hash;
@@ -1637,7 +1637,8 @@ fn test_drain_leak() {
16371637

16381638
catch_unwind(AssertUnwindSafe(|| {
16391639
v.drain(1..=4);
1640-
})).ok();
1640+
}))
1641+
.ok();
16411642

16421643
assert_eq!(unsafe { DROPS }, 4);
16431644
assert_eq!(v.len(), 3);

0 commit comments

Comments
 (0)