diff options
author | Benjamin Dobell <benjamin.dobell+git@glassechidna.com.au> | 2014-05-18 03:05:46 +1000 |
---|---|---|
committer | Benjamin Dobell <benjamin.dobell+git@glassechidna.com.au> | 2014-05-18 03:05:46 +1000 |
commit | fc0d542bc28b86b1fa3402ab6878c7dea450d0c6 (patch) | |
tree | 3001fd3ca821af0f88210ef34ae8301d8f300695 | |
parent | bd9b2bdee6f65ca2a7531fe81e7a80261a87dc5d (diff) | |
download | external_heimdall-fc0d542bc28b86b1fa3402ab6878c7dea450d0c6.zip external_heimdall-fc0d542bc28b86b1fa3402ab6878c7dea450d0c6.tar.gz external_heimdall-fc0d542bc28b86b1fa3402ab6878c7dea450d0c6.tar.bz2 |
Fixed Frontend bug that could cause flashing to fail.
The resume boolean did not have a default value set. Consequently if the
memory address containing the boolean was already non-null it resulted in
the heimdall CLI binary being called with the --resume flag even though
the Resume check-box in the UI was not checked.
-rw-r--r-- | heimdall-frontend/Source/mainwindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/heimdall-frontend/Source/mainwindow.cpp b/heimdall-frontend/Source/mainwindow.cpp index 98f683e..f122034 100644 --- a/heimdall-frontend/Source/mainwindow.cpp +++ b/heimdall-frontend/Source/mainwindow.cpp @@ -419,6 +419,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) populatingPartitionNames = false;
verboseOutput = false;
+ resume = false;
tabIndex = functionTabWidget->currentIndex();
functionTabWidget->setTabEnabled(functionTabWidget->indexOf(createPackageTab), false);
|