Fix data race in bytes (#244)

This commit is contained in:
Nikolay Kim 2023-11-10 22:33:48 +06:00 committed by GitHub
parent 0e6f6db04e
commit ae383c6d90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 5 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.1.21] (2023-11-1)
* Data race in BytesMut #243
## [0.1.19] (2023-01-23)
* Add PollRef::resize_read_buf() and PollRef::resize_write_buf() helpers

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-bytes"
version = "0.1.20"
version = "0.1.21"
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

@ -1814,9 +1814,7 @@ impl fmt::Write for BytesMut {
impl Clone for BytesMut {
#[inline]
fn clone(&self) -> BytesMut {
BytesMut {
inner: unsafe { self.inner.shallow_clone() },
}
BytesMut::from(&self[..])
}
}