Skip to content

Instantly share code, notes, and snippets.

@jeehoonkang
Created October 16, 2014 01:15
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 jeehoonkang/bfdc1edbf278f63f3795 to your computer and use it in GitHub Desktop.
Save jeehoonkang/bfdc1edbf278f63f3795 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
int main() {
char *p = malloc(0x80000000);
*((char *)0x80000000) = 3;
return 0;
}
// test with: gcc -S -O2 tt.c && cat tt.s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment