diff options
| author | 2023-06-01 15:43:46 -0400 | |
|---|---|---|
| committer | 2023-06-03 00:06:07 -0700 | |
| commit | 8e8627a258917f7ede82add331b95a3f9f1337db (patch) | |
| tree | d46d4cf839b1501808562367b1107c839e4c8536 /src | |
| parent | input_common: Fix virtual amiibos (diff) | |
| download | yuzu-8e8627a258917f7ede82add331b95a3f9f1337db.tar.gz yuzu-8e8627a258917f7ede82add331b95a3f9f1337db.tar.xz yuzu-8e8627a258917f7ede82add331b95a3f9f1337db.zip | |
android: Don't crash the app when selecting a zip that causes a SecurityException
Diffstat (limited to 'src')
| -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 { | |||
| 103 | ) | 103 | ) |
| 104 | 104 | ||
| 105 | // Unzip the driver. | 105 | // Unzip the driver. |
| 106 | unzip(driverInstallationPath + DRIVER_INTERNAL_FILENAME, driverInstallationPath!!) | 106 | try { |
| 107 | unzip(driverInstallationPath + DRIVER_INTERNAL_FILENAME, driverInstallationPath!!) | ||
| 108 | } catch (e: SecurityException) { | ||
| 109 | return | ||
| 110 | } | ||
| 107 | 111 | ||
| 108 | // Initialize the driver parameters. | 112 | // Initialize the driver parameters. |
| 109 | initializeDriverParameters(context) | 113 | initializeDriverParameters(context) |