Merge pull request #5552 from volzhs/fix-jni-null

Fix crash when null value through jni on android
This commit is contained in:
Rémi Verschelde 2016-07-04 23:39:31 +02:00 committed by GitHub
commit 90b5b0d1c9
1 changed files with 4 additions and 0 deletions

View File

@ -238,6 +238,10 @@ String _get_class_name(JNIEnv * env, jclass cls, bool* array) {
Variant _jobject_to_variant(JNIEnv * env, jobject obj) {
if (obj == NULL) {
return Variant();
}
jclass c = env->GetObjectClass(obj);
bool array;
String name = _get_class_name(env, c, &array);