Add a message indicating overflow in

`core::intrinsics::is_nonoverlapping`.
This commit is contained in:
John Bobbo 2023-04-16 07:29:14 -07:00
parent d0603fdafa
commit 3dba5872a3
No known key found for this signature in database
GPG Key ID: D5B1CA85E46C4709

View File

@ -2519,7 +2519,9 @@ pub(crate) fn is_valid_allocation_size<T>(len: usize) -> bool {
pub(crate) fn is_nonoverlapping<T>(src: *const T, dst: *const T, count: usize) -> bool {
let src_usize = src.addr();
let dst_usize = dst.addr();
let size = mem::size_of::<T>().saturating_mul(count);
let size = mem::size_of::<T>()
.checked_mul(count)
.expect("is_nonoverlapping: `size_of::<T>() * count` overflows a usize");
let diff = if src_usize > dst_usize { src_usize - dst_usize } else { dst_usize - src_usize };
// If the absolute distance between the ptrs is at least as big as the size of the buffer,
// they do not overlap.