src/hotspot/share/prims/jvm.cpp
changeset 50458 976334531950
parent 50429 83aec1d357d4
child 50735 2f2af62dfac7
child 56726 3a9b7a1f9197
equal deleted inserted replaced
50457:538dd69b60c0 50458:976334531950
  1113   if (java_lang_Class::is_primitive(JNIHandles::resolve_non_null(cls))) {
  1113   if (java_lang_Class::is_primitive(JNIHandles::resolve_non_null(cls))) {
  1114     // There are no signers for primitive types
  1114     // There are no signers for primitive types
  1115     return NULL;
  1115     return NULL;
  1116   }
  1116   }
  1117 
  1117 
  1118   objArrayOop signers = java_lang_Class::signers(JNIHandles::resolve_non_null(cls));
  1118   objArrayHandle signers(THREAD, java_lang_Class::signers(JNIHandles::resolve_non_null(cls)));
  1119 
  1119 
  1120   // If there are no signers set in the class, or if the class
  1120   // If there are no signers set in the class, or if the class
  1121   // is an array, return NULL.
  1121   // is an array, return NULL.
  1122   if (signers == NULL) return NULL;
  1122   if (signers == NULL) return NULL;
  1123 
  1123