Skip to content

Commit

Permalink
Avoid unnecessary Vec construction in BufReader
Browse files Browse the repository at this point in the history
  • Loading branch information
calebsander committed Mar 3, 2021
1 parent 939b143 commit 9425e30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 3 additions & 4 deletions library/std/src/io/buffered/bufreader.rs
Expand Up @@ -90,10 +90,9 @@ impl<R: Read> BufReader<R> {
#[stable(feature = "rust1", since = "1.0.0")]
pub fn with_capacity(capacity: usize, inner: R) -> BufReader<R> {
unsafe {
let mut buffer = Vec::with_capacity(capacity);
buffer.set_len(capacity);
inner.initializer().initialize(&mut buffer);
BufReader { inner, buf: buffer.into_boxed_slice(), pos: 0, cap: 0 }
let mut buf = Box::new_uninit_slice(capacity).assume_init();
inner.initializer().initialize(&mut buf);
BufReader { inner, buf, pos: 0, cap: 0 }
}
}
}
Expand Down
1 change: 1 addition & 0 deletions library/std/src/lib.rs
Expand Up @@ -289,6 +289,7 @@
#![feature(needs_panic_runtime)]
#![feature(negative_impls)]
#![feature(never_type)]
#![feature(new_uninit)]
#![feature(nll)]
#![feature(nonnull_slice_from_raw_parts)]
#![feature(once_cell)]
Expand Down

0 comments on commit 9425e30

Please sign in to comment.