summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-19 21:21:16 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-19 21:21:16 +0000
commit65ad154e2ab959c7b57e566866500b874e6d253a (patch)
treec1c8eb72fd0bf7f65a4beba2bc58eab6269cc076 /gc.c
parent69ea68cc21f6539b58c08d8a122fdce3f062a1ce (diff)
* gc.c (gc_profile_total_time): check objspace->profile.next_index > 0.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41456 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gc.c b/gc.c
index 7eb6114867..5568015f0a 100644
--- a/gc.c
+++ b/gc.c
@@ -5348,10 +5348,11 @@ gc_profile_total_time(VALUE self)
{
double time = 0;
rb_objspace_t *objspace = &rb_objspace;
- size_t i;
- size_t count = objspace->profile.next_index - 1;
- if (objspace->profile.run && count > 0) {
+ if (objspace->profile.run && objspace->profile.next_index > 0) {
+ size_t i;
+ size_t count = objspace->profile.next_index - 1;
+
for (i = 0; i < count; i++) {
time += objspace->profile.record[i].gc_time;
}