# HG changeset patch # User hseigel # Date 1372600748 14400 # Node ID 77d72199179d1e833bc1e483a21ad2f136494f4d # Parent c325da1b4977ec65465f3d8e9364e8e0998d2977 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 diff -r c325da1b4977 -r 77d72199179d 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 */