Prevent potential division by zero
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
86b8d796c8
commit
f150c3b911
@ -576,9 +576,9 @@ struct plot_data *populate_plot_entries(struct dive *dive, struct divecomputer *
|
||||
|
||||
/* Add intermediate plot entries if required */
|
||||
delta = time - lasttime;
|
||||
if (delta < 0) {
|
||||
if (delta <= 0) {
|
||||
time = lasttime;
|
||||
delta = 0;
|
||||
delta = 1; // avoid divide by 0
|
||||
}
|
||||
for (offset = 10; offset < delta; offset += 10) {
|
||||
if (lasttime + offset > maxtime)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user