Skip to content

Commit 8547f51

Browse files
committed
allocate before calling T::default in <Arc<T>>::default()
Same rationale as in the previous commit.
1 parent 669e255 commit 8547f51

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

alloc/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@
104104
#![feature(async_closure)]
105105
#![feature(async_fn_traits)]
106106
#![feature(async_iterator)]
107+
#![feature(box_uninit_write)]
107108
#![feature(clone_to_uninit)]
108109
#![feature(coerce_unsized)]
109110
#![feature(const_align_of_val)]

alloc/src/sync.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -3447,7 +3447,13 @@ impl<T: Default> Default for Arc<T> {
34473447
/// assert_eq!(*x, 0);
34483448
/// ```
34493449
fn default() -> Arc<T> {
3450-
Arc::new(Default::default())
3450+
let x = Box::into_raw(Box::write(Box::new_uninit(), ArcInner {
3451+
strong: atomic::AtomicUsize::new(1),
3452+
weak: atomic::AtomicUsize::new(1),
3453+
data: T::default(),
3454+
}));
3455+
// SAFETY: `Box::into_raw` consumes the `Box` and never returns null
3456+
unsafe { Self::from_inner(NonNull::new_unchecked(x)) }
34513457
}
34523458
}
34533459

0 commit comments

Comments
 (0)