main.cpp 175 B

123456789101112131415
  1. #include "../../segv_handler.h"
  2. void Bar(int* x) {
  3. *x = 11;
  4. }
  5. void Foo(int* x) {
  6. Bar(x);
  7. }
  8. int main() {
  9. InstallSegvHandler();
  10. Foo((int*)1);
  11. return 0;
  12. }