Skip to content

Instantly share code, notes, and snippets.

@HungMingWu
Created December 5, 2012 02:49
Show Gist options
  • Save HungMingWu/4211689 to your computer and use it in GitHub Desktop.
Save HungMingWu/4211689 to your computer and use it in GitHub Desktop.
Memory Leak demo
#include <stdlib.h>
int main()
{
void *p = malloc(10);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment