Skip to content

Commit 6af17e6

Browse files
committed
core: check pointer equality when comparing byte slices
1 parent 3c795e0 commit 6af17e6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/libcore/slice.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1831,6 +1831,9 @@ impl<A> SlicePartialEq<A> for [A]
18311831
if self.len() != other.len() {
18321832
return false;
18331833
}
1834+
if self.as_ptr() == other.as_ptr() {
1835+
return true;
1836+
}
18341837
unsafe {
18351838
let size = mem::size_of_val(self);
18361839
memcmp(self.as_ptr() as *const u8,

0 commit comments

Comments
 (0)