mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
783cffce1d
commit
eccb729a3f
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Tue May 28 00:18:57 2013 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* vm_trace.c (rb_postponed_job_flush): remove a wrong comment.
|
||||
|
||||
Mon May 27 22:09:33 2013 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* include/ruby/ruby.h (RHASH_SIZE): Add a cast to suppress a
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue