diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-08 13:01:25 -0400 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-10 00:38:29 -0400 |
commit | 75a01475d174a8dbea7dcf41002cb53abce1d8bb (patch) | |
tree | 306cf429e43fb9c9272b31e6a44e71c37b0e8fcc /src/yuzu/main.cpp | |
parent | 6d8d7ebc66d9deb5adb4edb246590481b1236bbc (diff) |
Add additional empty check for the QStringList returned by the InstallDialog
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 8a57e34c71..4323797050 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1621,6 +1621,10 @@ void GMainWindow::OnMenuInstallToNAND() { const QStringList files = installDialog.GetFiles(); + if (files.isEmpty()) { + return; + } + int remaining = filenames.size(); // This would only overflow above 2^43 bytes (8.796 TB) |