hotspot/src/share/vm/memory/universe.cpp
changeset 18109 c4a4f293ad06
parent 18066 b4b1f65075e5
parent 18073 f02460441ddc
child 18453 4056af328b00
--- a/hotspot/src/share/vm/memory/universe.cpp	Mon Jun 24 14:27:24 2013 -0700
+++ b/hotspot/src/share/vm/memory/universe.cpp	Tue Jun 25 12:46:21 2013 -0700
@@ -531,7 +531,9 @@
   if (vt) vt->initialize_vtable(false, CHECK);
   if (ko->oop_is_instance()) {
     InstanceKlass* ik = (InstanceKlass*)ko;
-    for (KlassHandle s_h(THREAD, ik->subklass()); s_h() != NULL; s_h = (THREAD, s_h()->next_sibling())) {
+    for (KlassHandle s_h(THREAD, ik->subklass());
+         s_h() != NULL;
+         s_h = KlassHandle(THREAD, s_h()->next_sibling())) {
       reinitialize_vtable_of(s_h, CHECK);
     }
   }