Re: RFR: 8299088: ClassLoader.c contains 2 JNI exception pending defect groups

2023-03-09 Thread Naoto Sato
On Wed, 8 Mar 2023 22:02:22 GMT, Justin Lu wrote: > This PR removes the JNI Exception pending defect groups in ClassLoader.c. > > `getUTF()` throws an exception and subsequently returns `null`; the exception > should either be cleared, or control returned to the JVM. > `JNU_ThrowOutOfMemoryEr

Re: RFR: 8299088: ClassLoader.c contains 2 JNI exception pending defect groups

2023-03-08 Thread Mandy Chung
On Wed, 8 Mar 2023 22:02:22 GMT, Justin Lu wrote: > This PR removes the JNI Exception pending defect groups in ClassLoader.c. > > `getUTF()` throws an exception and subsequently returns `null`; the exception > should either be cleared, or control returned to the JVM. > `JNU_ThrowOutOfMemoryEr

RFR: 8299088: ClassLoader.c contains 2 JNI exception pending defect groups

2023-03-08 Thread Justin Lu
This PR removes the JNI Exception pending defect groups in ClassLoader.c. `getUTF()` throws an exception and subsequently returns `null`; the exception should either be cleared, or control returned to the JVM. `JNU_ThrowOutOfMemoryError(env, NULL);` should not be called again - Co