# HG changeset patch # User iveresov # Date 1244502859 25200 # Node ID f89cf529c3c772f0435bf0028acc5cb3979b35d2 # Parent fe1574da39fc3dec9c7002f531a15c5474e1a748 6849122: G1: Typo introduced during implementation of the parallel refinement Summary: Typo fix Reviewed-by: jcoomes diff -r fe1574da39fc -r f89cf529c3c7 src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp --- a/src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp Sun Jun 07 00:27:41 2009 -0700 +++ b/src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp Mon Jun 08 16:14:19 2009 -0700 @@ -111,7 +111,7 @@ for (int i = 0; i < _n_threads; i++) { delete _threads[i]; } - FREE_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _n_threads); + FREE_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _threads); } }