forked from organicmaps/organicmaps-tmp
[android] Fixed crash in downloader - local JNI reference had become invalid between calls
This commit is contained in:
parent
5c074f0b83
commit
5f202e1c44
1 changed files with 3 additions and 2 deletions
|
@ -24,8 +24,8 @@ public:
|
|||
jmethodID methodId = env->GetMethodID(klass, "<init>", "(JLjava/lang/String;JJJLjava/lang/String;)V");
|
||||
ASSERT(methodId, ("Can't find java constructor in com/mapswithme/maps/downloader/DownloadChunkTask"));
|
||||
|
||||
m_self = env->NewObject(klass, methodId, reinterpret_cast<jlong>(&cb),
|
||||
env->NewStringUTF(url.c_str()), beg, end, expectedFileSize, env->NewStringUTF(pb.c_str()));
|
||||
m_self = env->NewGlobalRef(env->NewObject(klass, methodId, reinterpret_cast<jlong>(&cb),
|
||||
env->NewStringUTF(url.c_str()), beg, end, expectedFileSize, env->NewStringUTF(pb.c_str())));
|
||||
|
||||
methodId = env->GetMethodID(klass, "start", "()V");
|
||||
ASSERT(methodId, ("Can't find java method 'start' in com/mapswithme/maps/downloader/DownloadChunkTask"));
|
||||
|
@ -43,6 +43,7 @@ public:
|
|||
ASSERT(methodId, ("Can't find java method 'cancel' in com/mapswithme/maps/downloader/DownloadChunkTask"));
|
||||
|
||||
env->CallBooleanMethod(m_self, methodId, false);
|
||||
env->DeleteGlobalRef(m_self);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue