Browse Source

Add additional empty check for the QStringList returned by the InstallDialog

nce_cpp
Morph 6 years ago
parent
commit
4bf2b55e67
  1. 4
      src/yuzu/main.cpp

4
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)

Loading…
Cancel
Save