From 191c06c79c133e94340ffcc103466ed58396584e Mon Sep 17 00:00:00 2001 From: Waffle Maybe Date: Thu, 7 Oct 2021 02:25:41 +0300 Subject: [PATCH] Remove useless `unsafe`, `mut` and ptr casts in example in `send-and-sync.md` (#308) --- src/send-and-sync.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/send-and-sync.md b/src/send-and-sync.md index 9742328..b526ebc 100644 --- a/src/send-and-sync.md +++ b/src/send-and-sync.md @@ -102,7 +102,7 @@ impl Carton { pub fn new(value: T) -> Self { // Allocate enough memory on the heap to store one T. assert_ne!(size_of::(), 0, "Zero-sized types are out of the scope of this example"); - let mut memptr = ptr::null_mut() as *mut T; + let mut memptr: *mut T = ptr::null_mut(); unsafe { let ret = libc::posix_memalign( (&mut memptr).cast(), @@ -113,10 +113,10 @@ impl Carton { }; // NonNull is just a wrapper that enforces that the pointer isn't null. - let mut ptr = unsafe { + let ptr = { // Safety: memptr is dereferenceable because we created it from a // reference and have exclusive access. - ptr::NonNull::new(memptr.cast::()) + ptr::NonNull::new(memptr) .expect("Guaranteed non-null if posix_memalign returns 0") };