diff options
-rw-r--r-- | core/dive.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/dive.c b/core/dive.c index 4b103bfbd..0a8c9f2a9 100644 --- a/core/dive.c +++ b/core/dive.c @@ -245,7 +245,7 @@ struct gasmix *get_gasmix_from_event(struct dive *dive, struct event *ev) static struct gasmix dummy; if (ev && event_is_gaschange(ev)) { int index = ev->gas.index; - if (index >= 0 && index <= MAX_CYLINDERS) + if (index >= 0 && index < MAX_CYLINDERS) return &dive->cylinder[index].gasmix; return &ev->gas.mix; } @@ -756,7 +756,7 @@ struct sample *prepare_sample(struct divecomputer *dc) // Init some values with -1 sample->bearing.degrees = -1; sample->ndl.seconds = -1; - + return sample; } return NULL; |