Commit 6e84eab8 by Tom Tromey Committed by Tom Tromey

* jni.cc (_Jv_JNI_PopSystemFrame): Clear `env->ex'.

From-SVN: r33285
parent 06a50fff
2000-04-20 Tom Tromey <tromey@cygnus.com>
* jni.cc (_Jv_JNI_PopSystemFrame): Clear `env->ex'.
2000-04-19 Tom Tromey <tromey@cygnus.com>
* jni.cc (_Jv_JNI_FindClass): Use system class loader if class
......
......@@ -357,7 +357,11 @@ _Jv_JNI_PopSystemFrame (JNIEnv *env)
_Jv_JNI_PopLocalFrame (env, NULL, MARK_SYSTEM);
if (env->ex)
throw env->ex;
{
jthrowable t = env->ex;
env->ex = NULL;
throw t;
}
}
// This function is used from other template functions. It wraps the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment