< prev index next >

src/hotspot/share/classfile/dictionary.hpp

Print this page

        

@@ -180,11 +180,11 @@
 
   void verify_protection_domain_set() {
     for (ProtectionDomainEntry* current = pd_set(); // accessed at a safepoint
                                 current != NULL;
                                 current = current->_next) {
-      current->_pd_cache->object_no_keepalive()->verify();
+      oopDesc::verify(current->_pd_cache->object_no_keepalive());
     }
   }
 
   bool equals(const Symbol* class_name) const {
     InstanceKlass* klass = (InstanceKlass*)literal();
< prev index next >