IT lexicon Programming Memory leak

Memory leak

Programming På svenska → Updated: 2026-05-23

Memory that's allocated but never released — the app grows until it crashes.

In languages without GC: missing free(). With GC: accidental references that prevent the GC from cleaning up (event listeners, global caches). Diagnosed with heap snapshots and profilers.

← Back to the lexicon