aboutsummaryrefslogtreecommitdiffstats
path: root/heimdall-frontend/source/mainwindow.cpp
diff options
context:
space:
mode:
authorBenjamin Dobell <benjamin.dobell+github@glassechidna.com.au>2016-03-01 17:57:37 +1100
committerBenjamin Dobell <benjamin.dobell+github@glassechidna.com.au>2016-03-01 17:57:37 +1100
commit2bab8d9473cc237f6665a9cfe784942e0a2038e8 (patch)
tree66290929ce2f418bc4140136751719fc01c565c2 /heimdall-frontend/source/mainwindow.cpp
parenta59a290e235b5ee939039ce4920e39d1057a4635 (diff)
parent34c4636ee0a8ef9857b23e2257b670d14b2dfb8a (diff)
downloadexternal_heimdall-2bab8d9473cc237f6665a9cfe784942e0a2038e8.zip
external_heimdall-2bab8d9473cc237f6665a9cfe784942e0a2038e8.tar.gz
external_heimdall-2bab8d9473cc237f6665a9cfe784942e0a2038e8.tar.bz2
Merge pull request #330 from kratz00/misc_fixes
Minor bug fixes.
Diffstat (limited to 'heimdall-frontend/source/mainwindow.cpp')
-rw-r--r--heimdall-frontend/source/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/heimdall-frontend/source/mainwindow.cpp b/heimdall-frontend/source/mainwindow.cpp
index e110d69..f06fb4e 100644
--- a/heimdall-frontend/source/mainwindow.cpp
+++ b/heimdall-frontend/source/mainwindow.cpp
@@ -131,7 +131,7 @@ bool MainWindow::ReadPit(QFile *file)
file->close();
bool success = currentPitData.Unpack(buffer);
- delete buffer;
+ delete[] buffer;
if (!success)
currentPitData.Clear();
@@ -659,7 +659,7 @@ void MainWindow::SelectPartitionName(int index)
partitionFileGroup->setTitle(title);
- if (!fileInfo.GetFilename().isEmpty())
+ if (pitEntry && !fileInfo.GetFilename().isEmpty())
{
QString partitionFilename = pitEntry->GetFlashFilename();
int lastPeriod = partitionFilename.lastIndexOf(QChar('.'));