diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-27 15:19:36 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-27 15:19:36 +0000 |
commit | eccb729a3fb840dc9b45103a19fe62d23b3d5e6c (patch) | |
tree | 9f1891d0b2f2ab0d72ecabcea9c5b5fa2f75511b /vm_trace.c | |
parent | 783cffce1dc7a440f4cb04695961fc7349de3024 (diff) | |
download | ruby-eccb729a3fb840dc9b45103a19fe62d23b3d5e6c.tar.gz |
* vm_trace.c (rb_postponed_job_flush): remove a wrong comment.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40961 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_trace.c')
-rw-r--r-- | vm_trace.c | 2 |
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; } } |