7007040: Check of capacity paramenters in JNI_PushLocalFrame is wrong
authorhseigel
Sun, 30 Jun 2013 09:59:08 -0400
changeset 18486 77d72199179d
parent 18485 c325da1b4977
child 18487 270ef05ebce8
7007040: Check of capacity paramenters in JNI_PushLocalFrame is wrong Summary: changed AND to OR Reviewed-by: coleenp, hseigel Contributed-by: lois.foltan@oracle.com
hotspot/src/share/vm/prims/jni.cpp
--- a/hotspot/src/share/vm/prims/jni.cpp	Sat Jun 29 11:55:09 2013 -0700
+++ b/hotspot/src/share/vm/prims/jni.cpp	Sun Jun 30 09:59:08 2013 -0400
@@ -879,7 +879,7 @@
                                    env, capacity);
 #endif /* USDT2 */
   //%note jni_11
-  if (capacity < 0 && capacity > MAX_REASONABLE_LOCAL_CAPACITY) {
+  if (capacity < 0 || capacity > MAX_REASONABLE_LOCAL_CAPACITY) {
 #ifndef USDT2
     DTRACE_PROBE1(hotspot_jni, PushLocalFrame__return, JNI_ERR);
 #else /* USDT2 */