Skip to content

Instantly share code, notes, and snippets.

/sample.c Secret

Created December 26, 2015 20:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/7e62e9e5814aee67fc83 to your computer and use it in GitHub Desktop.
Save anonymous/7e62e9e5814aee67fc83 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
struct never_completed *p;
if ((p = malloc(1024)) == NULL)
return EXIT_FAILURE;
free(p);
return EXIT_SUCCESS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment