From 0e657ac385dbe06772abd4c06c9f8d26e9a2ed42 Mon Sep 17 00:00:00 2001 From: Arsentiy Milchakov Date: Mon, 7 May 2018 11:17:22 +0300 Subject: [PATCH] [jni] link leaking fix. --- android/jni/com/mapswithme/core/jni_helper.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/jni/com/mapswithme/core/jni_helper.cpp b/android/jni/com/mapswithme/core/jni_helper.cpp index 9a1ea29396..d862623a5c 100644 --- a/android/jni/com/mapswithme/core/jni_helper.cpp +++ b/android/jni/com/mapswithme/core/jni_helper.cpp @@ -219,7 +219,7 @@ bool HandleJavaException(JNIEnv * env) { if (env->ExceptionCheck()) { - jni::ScopedLocalRef const e(env, env->ExceptionOccurred()); + jni::ScopedLocalRef 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 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 {}; }