Allocating more and more memory, but forgetting to
Also happens in garbage collected environments when
Even if your environment supports garbage-collection, it is always important to remember that GC environments deallocate lazily... so while you can't leak memory, objects that map to other, much more precious resources (like database connections) can pile up quickly.
See also TestForMemoryLeak, MemoryLeakInCpp, AutoCad