aboutsummaryrefslogtreecommitdiffstats
path: root/core/divelist.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/divelist.c')
-rw-r--r--core/divelist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/divelist.c b/core/divelist.c
index c15ca8d3c..3c0570673 100644
--- a/core/divelist.c
+++ b/core/divelist.c
@@ -1471,7 +1471,7 @@ static int comp_dive_to_trip(struct dive *a, struct dive_trip *b)
{
/* This should never happen, nevertheless don't crash on trips
* with no (or worse a negative number of) dives. */
- if (b->dives.nr <= 0)
+ if (!b || b->dives.nr <= 0)
return -1;
return comp_dives(a, b->dives.dives[0]);
}