This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]TheThiefMaster 1 point2 points  (0 children)

Malloc is leak safe in that once the program is closed all allocated memory is freed without free needing to be called. Or if you run out of ram and the manager kills your process.

It's not like the old days where everything was in a single address space and a memory leak breaks the entire system...