1
0
Fork 0
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:
ko1 2013-05-27 15:19:36 +00:00
parent 783cffce1d
commit eccb729a3f
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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;
}
}