summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-08-04 19:49:43 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-11-09 19:19:04 +0100
commit6a1e2cd8c23df47833db55856c5e27c2e198aa6e (patch)
treec7fb8759e550d128f6826e5a014d730b990c7d07 /core
parentfd23c3d9085a4cd288b95ea414f58f3ad1ac92f1 (diff)
downloadsubsurface-6a1e2cd8c23df47833db55856c5e27c2e198aa6e.tar.gz
Desktop: support no-cylinders in dive information tab
The tab was crashing if there were no cylinders because 1) per_cylinder_mean_depth() would access non-existing cylinders. 2) TabDiveInformation::updateProfile() would access a non-existing mean. Fix both of these crash conditions by checking whether the dive actually has cylinders. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core')
-rw-r--r--core/dive.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/dive.c b/core/dive.c
index 24fa8780d..7255416ac 100644
--- a/core/dive.c
+++ b/core/dive.c
@@ -753,6 +753,9 @@ void per_cylinder_mean_depth(const struct dive *dive, struct divecomputer *dc, i
bool *used_cylinders;
int num_used_cylinders;
+ if (dive->cylinders.nr <= 0)
+ return;
+
for (i = 0; i < dive->cylinders.nr; i++)
mean[i] = duration[i] = 0;
if (!dc)