< prev index next >

src/jdk.jdwp.agent/share/native/libjdwp/ArrayTypeImpl.c

Print this page

        

@@ -228,11 +228,12 @@
         return JNI_FALSE;
     }
     componentSignature = &signature[1];
 
     if ((componentSignature[0] == JDWP_TAG(OBJECT)) ||
-        (componentSignature[0] == JDWP_TAG(ARRAY))) {
+        (componentSignature[0] == JDWP_TAG(ARRAY))  ||
+        (componentSignature[0] == JDWP_TAG(INLINE_OBJECT))) {
         writeNewObjectArray(env, out, arrayClass, size, componentSignature);
     } else {
         writeNewPrimitiveArray(env, out, arrayClass, size, componentSignature);
     }
 
< prev index next >