forked from organicmaps/organicmaps
[jni] link leaking fix.
This commit is contained in:
parent
596b0426c8
commit
0e657ac385
1 changed files with 3 additions and 3 deletions
|
@ -219,7 +219,7 @@ bool HandleJavaException(JNIEnv * env)
|
|||
{
|
||||
if (env->ExceptionCheck())
|
||||
{
|
||||
jni::ScopedLocalRef<jthrowable> const e(env, env->ExceptionOccurred());
|
||||
jni::ScopedLocalRef<jthrowable> const e(env, env->ExceptionOccurred());
|
||||
env->ExceptionDescribe();
|
||||
env->ExceptionClear();
|
||||
my::LogLevel level = GetLogLevelForException(env, e.get());
|
||||
|
@ -251,12 +251,12 @@ std::string DescribeException()
|
|||
|
||||
if (env->ExceptionCheck())
|
||||
{
|
||||
jthrowable e = env->ExceptionOccurred();
|
||||
jni::ScopedLocalRef<jthrowable> const e(env, env->ExceptionOccurred());
|
||||
|
||||
// have to clear the exception before JNI will work again.
|
||||
env->ExceptionClear();
|
||||
|
||||
return ToNativeString(env, e);
|
||||
return ToNativeString(env, e.get());
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue