You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Fix crash in FileAccessJAndroid::file_exists (does not free local ref)
This commit is contained in:
@@ -182,8 +182,10 @@ bool FileAccessJAndroid::file_exists(const String& p_path) {
|
||||
|
||||
jstring js = env->NewStringUTF(path.utf8().get_data());
|
||||
int res = env->CallIntMethod(io,_file_open,js,false);
|
||||
if (res<=0)
|
||||
if (res<=0) {
|
||||
env->DeleteLocalRef(js);
|
||||
return false;
|
||||
}
|
||||
env->CallVoidMethod(io,_file_close,res);
|
||||
env->DeleteLocalRef(js);
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user