diff options
| author | Peter Zhu <peter@peterzhu.ca> | 2024-08-30 10:45:25 -0400 |
|---|---|---|
| committer | Peter Zhu <peter@peterzhu.ca> | 2024-08-30 10:45:25 -0400 |
| commit | 89bbb9a888fe0c1ea46192791fa0a324d909e34c (patch) | |
| tree | 6da6afa7b7b9cdd6fd73c6f7adb4f9070f86f91e | |
| parent | ca7b3d467d8ea2c86fb1fadc5c5eae28db54639c (diff) | |
Fix call to each_location_ptr for ASAN
| -rw-r--r-- | gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2261,7 +2261,7 @@ gc_mark_machine_stack_location_maybe(void *data, VALUE obj) &fake_frame_start, &fake_frame_end ); if (is_fake_frame) { - each_location_ptr(ec, fake_frame_start, fake_frame_end, rb_gc_impl_mark_maybe, objspace); + each_location_ptr(fake_frame_start, fake_frame_end, rb_gc_impl_mark_maybe, objspace); } #endif } |
