6849122: G1: Typo introduced during implementation of the parallel refinement

Mon, 08 Jun 2009 16:14:19 -0700

author
iveresov
date
Mon, 08 Jun 2009 16:14:19 -0700
changeset 1234
f89cf529c3c7
parent 1233
fe1574da39fc
child 1235
7295839252de

6849122: G1: Typo introduced during implementation of the parallel refinement
Summary: Typo fix
Reviewed-by: jcoomes

src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp	Sun Jun 07 00:27:41 2009 -0700
     1.2 +++ b/src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp	Mon Jun 08 16:14:19 2009 -0700
     1.3 @@ -111,7 +111,7 @@
     1.4      for (int i = 0; i < _n_threads; i++) {
     1.5        delete _threads[i];
     1.6      }
     1.7 -    FREE_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _n_threads);
     1.8 +    FREE_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _threads);
     1.9    }
    1.10  }
    1.11  

mercurial