Skip to content

Commit aadfd81

Browse files
committed
Swap usize -> ptr transmute for strict_pov API
Removes some unsafety and reduces the number of `usize` -> `ptr` transmutes which might be helpful for CHERI-like targets in the future.
1 parent 78e9621 commit aadfd81

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/alloc/src/raw_vec/mod.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -410,8 +410,7 @@ unsafe impl<#[may_dangle] T, A: Allocator> Drop for RawVec<T, A> {
410410
impl<A: Allocator> RawVecInner<A> {
411411
#[inline]
412412
const fn new_in(alloc: A, align: Alignment) -> Self {
413-
// SAFETY: `Alignment` is non-zero.
414-
let ptr = unsafe { core::mem::transmute(align) };
413+
let ptr = Unique::from_non_null(NonNull::without_provenance(align.as_nonzero()));
415414
// `cap: 0` means "unallocated". zero-sized types are ignored.
416415
Self { ptr, cap: ZERO_CAP, alloc }
417416
}

library/alloctests/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#![feature(iter_next_chunk)]
2929
#![feature(maybe_uninit_slice)]
3030
#![feature(maybe_uninit_uninit_array_transpose)]
31+
#![feature(nonnull_provenance)]
3132
#![feature(ptr_alignment_type)]
3233
#![feature(ptr_internals)]
3334
#![feature(sized_type_properties)]

0 commit comments

Comments
 (0)