Merge pull request #90710 from m4gr3d/fix_jstring_leaks

Fix leakage of JNI object references
This commit is contained in:
Rémi Verschelde
2024-04-22 12:52:16 +02:00
20 changed files with 139 additions and 32 deletions

View File

@ -776,6 +776,10 @@ void OS_Android::benchmark_dump() {
}
bool OS_Android::_check_internal_feature_support(const String &p_feature) {
if (p_feature == "macos" || p_feature == "web_ios" || p_feature == "web_macos" || p_feature == "windows") {
return false;
}
if (p_feature == "system_fonts") {
return true;
}