From fccad089217810d6c048f17be40a263ec62a4abe Mon Sep 17 00:00:00 2001 From: Evgeniy Filimonov <33426868+eugenefil@users.noreply.github.com> Date: Sun, 30 Jun 2024 18:23:20 +0200 Subject: [PATCH] 07_threads: 03_leak: Leak vector with Vec::leak, not Box::leak (#107) --- book/src/07_threads/03_leak.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/src/07_threads/03_leak.md b/book/src/07_threads/03_leak.md index 824964b..a8795a6 100644 --- a/book/src/07_threads/03_leak.md +++ b/book/src/07_threads/03_leak.md @@ -27,12 +27,12 @@ run out and crash with an out-of-memory error. fn oom_trigger() { loop { let v: Vec = Vec::with_capacity(1024); - Box::leak(v); + v.leak(); } } ``` -At the same time, memory leaked via `Box::leak` is not truly forgotten.\ +At the same time, memory leaked via `leak` method is not truly forgotten.\ The operating system can map each memory region to the process responsible for it. When the process exits, the operating system will reclaim that memory. -- 2.45.2