mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
fix Box::into_unique
This commit is contained in:
parent
56d288fa46
commit
ab374dc37c
@ -724,15 +724,10 @@ impl<T: ?Sized, A: AllocRef> Box<T, A> {
|
||||
// Box is recognized as a "unique pointer" by Stacked Borrows, but internally it is a
|
||||
// raw pointer for the type system. Turning it directly into a raw pointer would not be
|
||||
// recognized as "releasing" the unique pointer to permit aliased raw accesses,
|
||||
// so all raw pointer methods have to leak the box. Turning *that* to a raw pointer
|
||||
// so all raw pointer methods have to go through `Box::leak`. Turning *that* to a raw pointer
|
||||
// behaves correctly.
|
||||
let b = mem::ManuallyDrop::new(b);
|
||||
|
||||
// The box is unitiliazed later when moving out the allocator. The pointer is stored
|
||||
// beforehand.
|
||||
let ptr = b.0;
|
||||
let alloc = unsafe { ptr::read(&b.1) };
|
||||
(ptr, alloc)
|
||||
(Unique::from(Box::leak(b)), alloc)
|
||||
}
|
||||
|
||||
/// Returns a reference to the underlying allocator.
|
||||
|
Loading…
Reference in New Issue
Block a user