summaryrefslogtreecommitdiff
path: root/vm_trace.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_trace.c')
-rw-r--r--vm_trace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_trace.c b/vm_trace.c
index 21b8f0a038..78113e2168 100644
--- a/vm_trace.c
+++ b/vm_trace.c
@@ -1429,7 +1429,7 @@ rb_postponed_job_flush(rb_vm_t *vm)
while (pjob) {
next_pjob = pjob->next;
pjob->func(pjob->data);
- ruby_xfree(pjob); /* postponed_job should be separated with Ruby's GC */
+ ruby_xfree(pjob);
pjob = next_pjob;
}
}