diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-03-01 23:12:06 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-03-01 23:12:06 +0000 |
| commit | 239cf26854a54ebb430b561628e77ed5be375ad9 (patch) | |
| tree | 64eb15af4d05399a0a7546ab486aa55c357d7c51 | |
| parent | 1a81d2e1e915e6e44df05544c30ffab400f32b67 (diff) | |
| download | ruby-239cf26854a54ebb430b561628e77ed5be375ad9.tar.gz ruby-239cf26854a54ebb430b561628e77ed5be375ad9.tar.xz ruby-239cf26854a54ebb430b561628e77ed5be375ad9.zip | |
* gc.c (add_heap): heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10009 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | gc.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Thu Mar 2 08:02:42 2006 Yukihiro Matsumoto <matz@ruby-lang.org> + + * gc.c (add_heap): heap_slots may overflow. a patch from Stefan + Weil <weil at mail.berlios.de>. + Wed Mar 1 00:24:31 2006 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> * lib/rdoc/parsers/parse_rb.rb (read_escape): could not handle /\^/. @@ -363,6 +363,7 @@ add_heap() if (himem < pend) himem = pend; heaps_used++; heap_slots *= 1.8; + if (heap_slots <= 0) heap_slots = HEAP_MIN_SLOTS; while (p < pend) { p->as.free.flags = 0; |
