File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -610,6 +610,7 @@ impl<T> LinkedList<T> {
610
610
} ;
611
611
612
612
mem:: swap ( & mut split_node. resolve ( ) . unwrap ( ) . next , & mut splitted_list. list_head ) ;
613
+ splitted_list. list_head . as_mut ( ) . unwrap ( ) . prev = Rawlink :: none ( ) ;
613
614
self . list_tail = split_node;
614
615
self . length = at;
615
616
@@ -1075,6 +1076,26 @@ mod tests {
1075
1076
}
1076
1077
}
1077
1078
1079
+ #[ test]
1080
+ fn test_26021 ( ) {
1081
+ use std:: iter:: ExactSizeIterator ;
1082
+ // There was a bug in split_off that failed to null out the RHS's head's prev ptr.
1083
+ // This caused the RHS's dtor to walk up into the LHS at drop and delete all of
1084
+ // its nodes.
1085
+ //
1086
+ // https://github.com/rust-lang/rust/issues/26021
1087
+ let mut v1 = LinkedList :: new ( ) ;
1088
+ v1. push_front ( 1u8 ) ;
1089
+ v1. push_front ( 1u8 ) ;
1090
+ v1. push_front ( 1u8 ) ;
1091
+ v1. push_front ( 1u8 ) ;
1092
+ let _ = v1. split_off ( 3 ) ; // Dropping this now should not cause laundry consumption
1093
+ assert_eq ! ( v1. len( ) , 3 ) ;
1094
+
1095
+ assert_eq ! ( v1. iter( ) . len( ) , 3 ) ;
1096
+ assert_eq ! ( v1. iter( ) . collect:: <Vec <_>>( ) . len( ) , 3 ) ;
1097
+ }
1098
+
1078
1099
#[ cfg( test) ]
1079
1100
fn fuzz_test ( sz : i32 ) {
1080
1101
let mut m: LinkedList < _ > = LinkedList :: new ( ) ;
You can’t perform that action at this time.
0 commit comments