diff options
author | Michael Andreen <harv@ruin.nu> | 2013-07-29 13:05:28 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-08-05 06:54:46 +0200 |
commit | 396b2d10317e49de029def1f4061e03e383c9040 (patch) | |
tree | 94eb50204f94fdd44b9bd856f63c6279a1864bb2 /qthelper.cpp | |
parent | 67fec4da704086f40f5d6699fc93603fdd0baaef (diff) | |
download | subsurface-396b2d10317e49de029def1f4061e03e383c9040.tar.gz |
Fix crash in DiveComputerList::addDC() when importing from DM4.
DiveComputerList::getExact() created a temporary QList with the
DiveComputerNodes matching a specific model. A pointer to a node in the
list was returned, which becomes invalid when the list goes out of scope
and gets destroyed. Causing a crash when the model strings are compared
later.
Instead of using contains() and creating a temporary list, we can just
use an iterator, which should be both faster and safer.
The crash is easy to trigger with DM4 imports, but can probably be
triggered in other cases too.
Similar problem with DiveComputerList::get().
Signed-off-by: Michael Andreen <harv@ruin.nu>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qthelper.cpp')
-rw-r--r-- | qthelper.cpp | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/qthelper.cpp b/qthelper.cpp index 4859c1be0..68f8c5058 100644 --- a/qthelper.cpp +++ b/qthelper.cpp @@ -35,21 +35,17 @@ bool DiveComputerNode::changesValues(const DiveComputerNode &b) const const DiveComputerNode *DiveComputerList::getExact(QString m, uint32_t d) { - if (dcMap.contains(m)) { - QList<DiveComputerNode> values = dcMap.values(m); - for (int i = 0; i < values.size(); i++) - if (values.at(i).deviceId == d) - return &values.at(i); - } + for (QMap<QString,DiveComputerNode>::iterator it = dcMap.find(m); it != dcMap.end() && it.key() == m; ++it) + if (it->deviceId == d) + return &*it; return NULL; } const DiveComputerNode *DiveComputerList::get(QString m) { - if (dcMap.contains(m)) { - QList<DiveComputerNode> values = dcMap.values(m); - return &values.at(0); - } + QMap<QString,DiveComputerNode>::iterator it = dcMap.find(m); + if (it != dcMap.end()) + return &*it; return NULL; } |