Open
Description
There was a memory leak introduced in between nightly-2020-09-27
and nightly-2020-09-28
.
If you build this code with two different toolchains one will have a memory leak and the other not.
use std::io::stdin;
use std::io::Read;
fn main() {
let mut buf = vec![];
if let Err(e) = stdin().read(&mut buf) {
println!("{}", e)
}
}
this code built with nightly-2020-09-28
valgrind output
==11076== HEAP SUMMARY:
==11076== in use at exit: 8,232 bytes in 2 blocks
==11076== total heap usage: 13 allocs, 11 frees, 10,409 bytes allocated
while this code built with nightly-2020-09-27:
valgrind output
==11601== HEAP SUMMARY:
==11601== in use at exit: 0 bytes in 0 blocks
==11601== total heap usage: 18 allocs, 18 frees, 10,577 bytes allocated
valgrind --leak-check=full --show-leak-kinds=all
==11920== HEAP SUMMARY:
==11920== in use at exit: 8,232 bytes in 2 blocks
==11920== total heap usage: 13 allocs, 11 frees, 10,409 bytes allocated
==11920==
==11920== 40 bytes in 1 blocks are still reachable in loss record 1 of 2
==11920== at 0x4C31B0F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==11920== by 0x120934: alloc (alloc.rs:74)
==11920== by 0x120934: alloc_impl (alloc.rs:153)
==11920== by 0x120934: alloc (alloc.rs:212)
==11920== by 0x120934: exchange_malloc (alloc.rs:302)
==11920== by 0x120934: new<std::io::buffered::BufReader<std::io::stdio::StdinRaw>> (mutex.rs:222)
==11920== by 0x120934: {{closure}} (stdio.rs:299)
==11920== by 0x120934: {{closure}}<std::sync::mutex::Mutex<std::io::buffered::BufReader<std::io::stdio::StdinRaw>>,closure-0> (lazy.rs:245)
==11920== by 0x120934: {{closure}}<std::sync::mutex::Mutex<std::io::buffered::BufReader<std::io::stdio::StdinRaw>>,closure-0,!> (lazy.rs:372)
==11920== by 0x120934: std::sync::once::Once::call_once_force::{{closure}} (once.rs:321)
==11920== by 0x120F84: std::sync::once::Once::call_inner (once.rs:419)
==11920== by 0x1211BB: call_once_force<closure-0> (once.rs:321)
==11920== by 0x1211BB: std::lazy::SyncOnceCell<T>::initialize (lazy.rs:371)
==11920== by 0x11E2CB: get_or_try_init<std::sync::mutex::Mutex<std::io::buffered::BufReader<std::io::stdio::StdinRaw>>,closure-0,!> (lazy.rs:292)
==11920== by 0x11E2CB: get_or_init<std::sync::mutex::Mutex<std::io::buffered::BufReader<std::io::stdio::StdinRaw>>,closure-0> (lazy.rs:245)
==11920== by 0x11E2CB: std::io::stdio::stdin (stdio.rs:298)
==11920== by 0x10D902: mem_leak::main (main.rs:7)
==11920== by 0x10DCAA: core::ops::function::FnOnce::call_once (function.rs:227)
==11920== by 0x10D11D: std::sys_common::backtrace::__rust_begin_short_backtrace (backtrace.rs:137)
==11920== by 0x10DBB0: std::rt::lang_start::{{closure}} (rt.rs:66)
==11920== by 0x123F7F: call_once<(),Fn<()>> (function.rs:259)
==11920== by 0x123F7F: do_call<&Fn<()>,i32> (panicking.rs:381)
==11920== by 0x123F7F: try<i32,&Fn<()>> (panicking.rs:345)
==11920== by 0x123F7F: catch_unwind<&Fn<()>,i32> (panic.rs:382)
==11920== by 0x123F7F: std::rt::lang_start_internal (rt.rs:51)
==11920== by 0x10DB86: std::rt::lang_start (rt.rs:65)
==11920== by 0x10DB39: main (in /home/boydjohnson/mem-leak/target/debug/mem-leak)
==11920==
==11920== 8,192 bytes in 1 blocks are still reachable in loss record 2 of 2
==11920== at 0x4C31B0F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==11920== by 0x120910: alloc (alloc.rs:74)
==11920== by 0x120910: alloc_impl (alloc.rs:153)
==11920== by 0x120910: alloc (alloc.rs:212)
==11920== by 0x120910: allocate_in<u8,alloc::alloc::Global> (raw_vec.rs:188)
==11920== by 0x120910: with_capacity_in<u8,alloc::alloc::Global> (raw_vec.rs:163)
==11920== by 0x120910: with_capacity<u8> (raw_vec.rs:93)
==11920== by 0x120910: with_capacity<u8> (vec.rs:363)
==11920== by 0x120910: with_capacity<std::io::stdio::StdinRaw> (buffered.rs:103)
==11920== by 0x120910: {{closure}} (stdio.rs:299)
==11920== by 0x120910: {{closure}}<std::sync::mutex::Mutex<std::io::buffered::BufReader<std::io::stdio::StdinRaw>>,closure-0> (lazy.rs:245)
==11920== by 0x120910: {{closure}}<std::sync::mutex::Mutex<std::io::buffered::BufReader<std::io::stdio::StdinRaw>>,closure-0,!> (lazy.rs:372)
==11920== by 0x120910: std::sync::once::Once::call_once_force::{{closure}} (once.rs:321)
==11920== by 0x120F84: std::sync::once::Once::call_inner (once.rs:419)
==11920== by 0x1211BB: call_once_force<closure-0> (once.rs:321)
==11920== by 0x1211BB: std::lazy::SyncOnceCell<T>::initialize (lazy.rs:371)
==11920== by 0x11E2CB: get_or_try_init<std::sync::mutex::Mutex<std::io::buffered::BufReader<std::io::stdio::StdinRaw>>,closure-0,!> (lazy.rs:292)
==11920== by 0x11E2CB: get_or_init<std::sync::mutex::Mutex<std::io::buffered::BufReader<std::io::stdio::StdinRaw>>,closure-0> (lazy.rs:245)
==11920== by 0x11E2CB: std::io::stdio::stdin (stdio.rs:298)
==11920== by 0x10D902: mem_leak::main (main.rs:7)
==11920== by 0x10DCAA: core::ops::function::FnOnce::call_once (function.rs:227)
==11920== by 0x10D11D: std::sys_common::backtrace::__rust_begin_short_backtrace (backtrace.rs:137)
==11920== by 0x10DBB0: std::rt::lang_start::{{closure}} (rt.rs:66)
==11920== by 0x123F7F: call_once<(),Fn<()>> (function.rs:259)
==11920== by 0x123F7F: do_call<&Fn<()>,i32> (panicking.rs:381)
==11920== by 0x123F7F: try<i32,&Fn<()>> (panicking.rs:345)
==11920== by 0x123F7F: catch_unwind<&Fn<()>,i32> (panic.rs:382)
==11920== by 0x123F7F: std::rt::lang_start_internal (rt.rs:51)
==11920== by 0x10DB86: std::rt::lang_start (rt.rs:65)
==11920== by 0x10DB39: main (in /home/boydjohnson/mem-leak/target/debug/mem-leak)
==11920==
==11920== LEAK SUMMARY:
==11920== definitely lost: 0 bytes in 0 blocks
==11920== indirectly lost: 0 bytes in 0 blocks
==11920== possibly lost: 0 bytes in 0 blocks
==11920== still reachable: 8,232 bytes in 2 blocks
==11920== suppressed: 0 bytes in 0 blocks