Home

❯

Computer Science

❯

Memory Leak

Memory Leak

Jan 07, 20251 min read

When you allocate memory without freeing it. Example:

void foo (void) {
	char *ca = malloc(...);
	/* no free */
	return;
}

See also

malloc


Graph View

Backlinks

  • C++ Smart Pointer

Created with Quartz v4.5.2 © 2026

  • GitHub
  • Discord Community