diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-06-01 15:43:46 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 00:06:07 -0700 |
commit | 8e8627a258917f7ede82add331b95a3f9f1337db (patch) | |
tree | d46d4cf839b1501808562367b1107c839e4c8536 | |
parent | eb4ab9bc58954c6a2bdd6ed3e8d1ecfb41d11e4a (diff) |
android: Don't crash the app when selecting a zip that causes a SecurityException
-rw-r--r-- | src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/GpuDriverHelper.kt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/GpuDriverHelper.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/GpuDriverHelper.kt index ed3c0f58e..528011d7f 100644 --- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/GpuDriverHelper.kt +++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/GpuDriverHelper.kt @@ -103,7 +103,11 @@ object GpuDriverHelper { ) // Unzip the driver. - unzip(driverInstallationPath + DRIVER_INTERNAL_FILENAME, driverInstallationPath!!) + try { + unzip(driverInstallationPath + DRIVER_INTERNAL_FILENAME, driverInstallationPath!!) + } catch (e: SecurityException) { + return + } // Initialize the driver parameters. initializeDriverParameters(context) |