Skip to content

Commit 0f5e30d

Browse files
committed
sort: Guard the fast path by length check
The right part must not be empty.
1 parent 35fd1ba commit 0f5e30d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/libcollections/slice.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1066,10 +1066,12 @@ fn merge_sort<T, F>(v: &mut [T], mut compare: F) where F: FnMut(&T, &T) -> Order
10661066
let mut out = buf_tmp.offset(start as isize);
10671067
let out_end = buf_tmp.offset(right_end_idx as isize);
10681068

1069-
// if left[last] <= right[0], they are already in order:
1069+
// If left[last] <= right[0], they are already in order:
10701070
// fast-forward the left side (the right side is handled
10711071
// in the loop).
1072-
if compare(&*right.offset(-1), &*right) != Greater {
1072+
// If `right` is not empty then left is not empty, and
1073+
// the offsets are in bounds.
1074+
if right != right_end && compare(&*right.offset(-1), &*right) != Greater {
10731075
let elems = (right_start as usize - left as usize) / mem::size_of::<T>();
10741076
ptr::copy_nonoverlapping(&*left, out, elems);
10751077
out = out.offset(elems as isize);

0 commit comments

Comments
 (0)