Skip to content

Commit 38fadbf

Browse files
Only do it after.
1 parent ea424f0 commit 38fadbf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scheduler.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@ VALUE rb_fiber_scheduler_blocking_operation_wait(VALUE scheduler, void* (*functi
10981098
// Create a new BlockingOperation with the blocking operation
10991099
VALUE blocking_operation = rb_fiber_scheduler_blocking_operation_new(function, data, unblock_function, data2, flags, state);
11001100
// Success, this works:
1101-
rb_fiber_scheduler_blocking_operation_t *operation = get_blocking_operation(blocking_operation);
1101+
rb_fiber_scheduler_blocking_operation_t *operation = NULL; // get_blocking_operation(blocking_operation);
11021102

11031103
size_t gc_count_before = rb_gc_count();
11041104
size_t minor_before = rb_gc_stat(ID2SYM(rb_intern("minor_gc_count")));

0 commit comments

Comments
 (0)