show/hide this revision's text 4 added source

Yes you are right, your example doesn't do any harm (at least not on most modern operating systems). All the memory allocated by your process will be recovered by the operating system once the process exits.

It

Source: Allocation and GC Myths (PostScript alert!)

Allocation Myth 4: Non-garbage-collected programs should always deallocate all memory they allocate.

The Truth: Omitted deallocations in frequently executed code cause growing leaks. They are rarely acceptable. but Programs that retain most allocated memory until program exit often perform better without any intervening deallocation. Malloc is a much easier to implement if there is no free.

In most cases, deallocating memory just before program exit is pointless. The OS will reclaim it anyway. Free will touch and page in the dead objects; the OS won't.

Consequence: Be careful with "leak thoughdetectors" that count allocations. Some "leaks" are good!

That said, and you should really try to avoid it, because its a good practice to free all the memory you allocated.leaks!

Second question: your design is ok. If you need to store something until your application exits then its ok to do this with dynamic memory allocation. If you don't know the required size upfront, you can't use statically allocated memory.

show/hide this revision's text 3 added 5 characters in body

Yes you are right, your example doesn't do any harm (at least not on most modern operating systems). All the memory allocated by your process will be recovered by the operating system once the process exits.

It is a memory leak though, and you should try to avoid it, because otherwise its a good practice to free all the memory leak detector tools will complainyou allocated.

Second question: your design is ok. If you need to store something until your application exits then its ok to do this with dynamic memory allocation. If you don't know the required size upfront, you can't use statically allocated memory.

show/hide this revision's text 2 added 301 characters in body

Yes you are right, your example doesn't do any harm (at least not on most modern operating systems). All the memory allocated by your process will be freed recovered by the operating system once the process exits.

It is a memory leak though, and you should try to avoid it, because otherwise memory leak detector tools will complain.

Second question: your design is ok. If you need to store something until your application exits then its ok to do this with dynamic memory allocation. If you don't know the required size upfront, you can't use statically allocated memory.

show/hide this revision's text 1