# HG changeset patch # User enevill # Date 1446054465 0 # Node ID acaa2f3db91b97d069d1e5b1d310988b0421ded8 # Parent 3ccdd3482827889dce995f82d1542f1247cf812b Fix thinko when backporting 8131645. Table ends up being allocated twice. diff -r 3ccdd3482827 -r acaa2f3db91b src/share/vm/gc_implementation/g1/g1CodeCacheRemSet.cpp --- a/src/share/vm/gc_implementation/g1/g1CodeCacheRemSet.cpp Thu Oct 08 11:06:07 2015 -0400 +++ b/src/share/vm/gc_implementation/g1/g1CodeCacheRemSet.cpp Wed Oct 28 17:47:45 2015 +0000 @@ -199,7 +199,6 @@ } void G1CodeRootSet::allocate_small_table() { - _table = new CodeRootSetTable(SmallSize); CodeRootSetTable* temp = new CodeRootSetTable(SmallSize); OrderAccess::release_store_ptr(&_table, temp);