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 {}; }