mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Init every struct sample with default values
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
This commit is contained in:
parent
1f8506ce64
commit
adbc71f9da
4 changed files with 9 additions and 4 deletions
|
@ -1727,7 +1727,7 @@ static void merge_one_sample(struct sample *sample, int time, struct divecompute
|
|||
{
|
||||
int last = dc->samples - 1;
|
||||
if (last >= 0) {
|
||||
static struct sample surface;
|
||||
static struct sample surface = { .bearing.degrees = -1, .ndl.seconds = -1 };
|
||||
struct sample *prev = dc->sample + last;
|
||||
int last_time = prev->time.seconds;
|
||||
int last_depth = prev->depth.mm;
|
||||
|
@ -1772,7 +1772,7 @@ static void merge_samples(struct divecomputer *res, struct divecomputer *a, stru
|
|||
|
||||
for (;;) {
|
||||
int at, bt;
|
||||
struct sample sample;
|
||||
struct sample sample = { .bearing.degrees = -1, .ndl.seconds = -1 };
|
||||
|
||||
if (!res)
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue