diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-01-18 14:35:31 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-01-18 14:37:08 -0800 |
commit | 733108b47385c68e163baebc10ff29c145d3685f (patch) | |
tree | fd076a257ba4804e2d6ad5f74b4a84a08eb6b9fc /qt-ui/diveplanner.cpp | |
parent | 2c6830c399d711db8149a2bc1bec0a83e54cae0c (diff) | |
download | subsurface-733108b47385c68e163baebc10ff29c145d3685f.tar.gz |
Fix potential crash in getColor functions
If the index is out of range, just return black.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/diveplanner.cpp')
-rw-r--r-- | qt-ui/diveplanner.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp index 7fa1a8783..4ff6894e6 100644 --- a/qt-ui/diveplanner.cpp +++ b/qt-ui/diveplanner.cpp @@ -45,7 +45,9 @@ QString dpGasToStr(const divedatapoint& p) QColor getColor(const color_indice_t i) { - return profile_color[i].at(0); + if ( profile_color.count() > i && i >= 0) + return profile_color[i].at(0); + return QColor(Qt::black); } static DivePlannerPointsModel *plannerModel = DivePlannerPointsModel::instance(); |