Fix crash when opening Poseidon_MkVILog.xml
In commit d5d7fdc9af98 ("For CCR dives, show plot for diluent and O2
cylinder pressures") we end up dereferencing current before it is first
initialized. Bad.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
299133d7b1
commit
55763d3da1
@ -402,7 +402,8 @@ void populate_pressure_information(struct dive *dive, struct divecomputer *dc, s
|
||||
missing_pr = 1;
|
||||
continue;
|
||||
}
|
||||
current->end = pressure;
|
||||
if (current)
|
||||
current->end = pressure;
|
||||
|
||||
/* Was it continuous? */
|
||||
if ((o2_flag) && (O2CYLINDER_PRESSURE(entry - 1))) // in the case of CCR o2 pressure
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user