show/hide this revision's text 3 deleted 39 characters in body

Memory Leak: Failing to free memory that you no longer need . Exactly when the memory must be freed before it is considered a leak is debatable but certainly before the either:

  • The program terminates.
  • Additional memory is allocated

Best way to prevent Memory Leaks: Free memory as soon as it is no longer needed.

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

Memory Leak: Not giving Failing to free memory back when that you are done with no longer need. Exactly when the memory must be freed before it is considered a leak is debatable but certainly before the program terminates.

Best way to prevent Memory Leaks: Give the Free memory back as soon as you are done with it is no longer needed.

show/hide this revision's text 1

Memory Leak: Not giving memory back when you are done with it.

Best way to prevent Memory Leaks: Give the memory back as soon as you are done with it.