Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: jni/JniUpdateCheckDoneCallback.cpp

Issue 4761138508070912: Issue 1848 - Clean up local reference handling (Closed)
Patch Set: Removed a Log.d Created Jan. 22, 2015, 6:56 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « jni/JniUpdateAvailableCallback.cpp ('k') | jni/JniWebRequest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jni/JniUpdateCheckDoneCallback.cpp
diff --git a/jni/JniUpdateCheckDoneCallback.cpp b/jni/JniUpdateCheckDoneCallback.cpp
index 817eb462e06a491168348df60b2ee8922d085710..3b96fa20599d77abd666ced25e247cd1639fa2ed 100644
--- a/jni/JniUpdateCheckDoneCallback.cpp
+++ b/jni/JniUpdateCheckDoneCallback.cpp
@@ -41,13 +41,14 @@ void JniUpdateCheckDoneCallback::Callback(const std::string& arg)
{
JNIEnvAcquire env(GetJavaVM());
- jclass clazz = env->GetObjectClass(GetCallbackObject());
- jmethodID method = env->GetMethodID(clazz, "updateCheckDoneCallback", "(Ljava/lang/String;)V");
+ jmethodID method = env->GetMethodID(
+ *JniLocalReference<jclass>(*env, env->GetObjectClass(GetCallbackObject())),
+ "updateCheckDoneCallback", "(Ljava/lang/String;)V");
if (method)
{
- jstring jArg = env->NewStringUTF(arg.c_str());
- env->CallVoidMethod(GetCallbackObject(), method, jArg);
+ JniLocalReference<jstring> jArg(*env, env->NewStringUTF(arg.c_str()));
+ env->CallVoidMethod(GetCallbackObject(), method, *jArg);
}
CheckAndLogJavaException(*env);
« no previous file with comments | « jni/JniUpdateAvailableCallback.cpp ('k') | jni/JniWebRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld