Skip to content

Instantly share code, notes, and snippets.

@dkilcy
Created February 6, 2015 02:41
Show Gist options
  • Save dkilcy/80a9f3da09ab843abbc4 to your computer and use it in GitHub Desktop.
Save dkilcy/80a9f3da09ab843abbc4 to your computer and use it in GitHub Desktop.
Exhaust all memory
int main()
{
while(1)
{
void *m = malloc(1024*1024);
memset(m,0,1024*1024);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment