We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 951e57d commit 5fe342cCopy full SHA for 5fe342c
1 file changed
ext/rbs_extension/main.c
@@ -466,10 +466,6 @@ void Init_rbs_extension(void) {
466
#ifdef HAVE_RB_EXT_RACTOR_SAFE
467
rb_ext_ractor_safe(true);
468
#endif
469
- // ASAN test: intentional heap buffer overflow to verify ASAN is working
470
- volatile char *test_ptr = malloc(10);
471
- test_ptr[10] = 'A'; // Out of bounds write - this will be caught by ASAN
472
-
473
rbs__init_constants();
474
rbs__init_location();
475
rbs__init_parser();
0 commit comments