summaryrefslogtreecommitdiffstats
path: root/core/btdiscovery.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2017-11-03 17:44:09 +0100
committerGravatar Lubomir I. Ivanov <neolit123@gmail.com>2017-11-04 14:26:21 +0100
commit92ba4b9cc7bbc2e1818191745d1976f9b915be9a (patch)
tree91fa732736dae61c3118ae6e600f51e72c5dc3df /core/btdiscovery.cpp
parente3580eda6f41a34f3662ad8ae9284adb48a38142 (diff)
downloadsubsurface-92ba4b9cc7bbc2e1818191745d1976f9b915be9a.tar.gz
Replace QMap::operator[] with QMap::value()
QMap::operator[] creates a new default constructed entry in the map if no entry with the given key exists. While not problematic (since typically nullptrs are inserted) this is usually not what you want for read access. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/btdiscovery.cpp')
-rw-r--r--core/btdiscovery.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/btdiscovery.cpp b/core/btdiscovery.cpp
index 731c4ca4f..ffa2a26f0 100644
--- a/core/btdiscovery.cpp
+++ b/core/btdiscovery.cpp
@@ -46,7 +46,7 @@ static dc_descriptor_t *getDeviceType(QString btName)
}
if (!vendor.isEmpty() && !product.isEmpty())
- return(descriptorLookup[vendor + product]);
+ return(descriptorLookup.value(vendor + product));
return(NULL);
}