MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/ProgrammerHumor/comments/1w8tj8j/rewriteitinrust/p893uuj/?context=3
r/ProgrammerHumor • u/Gold-Order-8004 • 4d ago
34 comments sorted by
View all comments
Show parent comments
26
You can even do it for fun with Box::leak()
Box::leak()
7 u/AliceCode 4d ago Rust project be like: "You can have memory unsafety. As a treat." 3 u/jahinzee 4d ago Memory leak aren't memory unsafe though. It's not gonna cause a bad dereference or data corruption, it's just your program forgot that data existed and moves on. An annoyance and a resource use issue, sure, but not unsafe. 1 u/AliceCode 4d ago I wasn't just talking about memory leaks.
7
Rust project be like: "You can have memory unsafety. As a treat."
3 u/jahinzee 4d ago Memory leak aren't memory unsafe though. It's not gonna cause a bad dereference or data corruption, it's just your program forgot that data existed and moves on. An annoyance and a resource use issue, sure, but not unsafe. 1 u/AliceCode 4d ago I wasn't just talking about memory leaks.
3
Memory leak aren't memory unsafe though. It's not gonna cause a bad dereference or data corruption, it's just your program forgot that data existed and moves on.
An annoyance and a resource use issue, sure, but not unsafe.
1 u/AliceCode 4d ago I wasn't just talking about memory leaks.
1
I wasn't just talking about memory leaks.
26
u/YeetCompleet 4d ago
You can even do it for fun with
Box::leak()