Y
Hacker News
new
|
ask
|
show
|
jobs
by
nick__m
379 days ago
You cannot have use-after-free if you never call free, so there are no points at which memory should not be touched.
That's the beauty of the never free memory management strategy.
1 comments
dajtxx
379 days ago
It can still be a bug if you use something after you would have freed it because your code isn't meant to be using that object any more. It points to errors in the logic.
link
guerrilla
378 days ago
Agreed. I think being methodical is better here for sure.
link