mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 22:07:38 +03:00
Fix dealloc for vec representation
This commit is contained in:
parent
0315d92401
commit
17631cd8a1
5 changed files with 13 additions and 6 deletions
|
@ -390,7 +390,7 @@ impl Bytes {
|
|||
#[inline]
|
||||
pub const fn new() -> Bytes {
|
||||
Bytes {
|
||||
inner: Inner::empty(),
|
||||
inner: Inner::empty_inline(),
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1846,7 +1846,7 @@ impl Inner {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
const fn empty() -> Inner {
|
||||
const fn empty_inline() -> Inner {
|
||||
Inner {
|
||||
arc: unsafe { NonNull::new_unchecked(KIND_INLINE as *mut Shared) },
|
||||
ptr: 0 as *mut u8,
|
||||
|
@ -2336,7 +2336,7 @@ impl Inner {
|
|||
}
|
||||
|
||||
Inner {
|
||||
arc: NonNull::new_unchecked(arc as *mut Shared),
|
||||
arc: NonNull::new_unchecked(arc),
|
||||
..*self
|
||||
}
|
||||
}
|
||||
|
@ -2575,7 +2575,7 @@ fn release_shared_vec(ptr: *mut SharedVec) {
|
|||
let cap = (*ptr).cap;
|
||||
(*ptr).pool.release(cap);
|
||||
ptr::drop_in_place(ptr);
|
||||
Vec::from_raw_parts(ptr, 0, cap);
|
||||
Vec::<u8>::from_raw_parts(ptr as *mut u8, 0, cap);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue