Fix dealloc for vec representation

This commit is contained in:
Nikolay Kim 2021-12-06 21:09:51 +06:00
parent 0315d92401
commit 17631cd8a1
5 changed files with 13 additions and 6 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.1.7] (2021-12-06)
* Fix dealloc for vec representation
## [0.1.6] (2021-12-03)
* Better api usability

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-bytes"
version = "0.1.6"
version = "0.1.7"
license = "MIT"
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Carl Lerche <me@carllerche.com>"]
description = "Types and traits for working with bytes (bytes crate fork)"

View file

@ -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);
}
}

View file

@ -13,6 +13,9 @@ pub use self::path::{Path, PathIter};
pub use self::resource::ResourceDef;
pub use self::router::{Router, RouterBuilder};
#[doc(hidden)]
pub struct ResourceInfo;
pub trait Resource<T: ResourcePath> {
fn path(&self) -> &str;

View file

@ -49,7 +49,7 @@ ntex-router = "0.5.1"
ntex-service = "0.2.1"
ntex-macros = "0.1.3"
ntex-util = "0.1.1"
ntex-bytes = "0.1.6"
ntex-bytes = "0.1.7"
base64 = "0.13"
bitflags = "1.3"