mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix crash when opening Poseidon_MkVILog.xml
In commit d5d7fdc9af
("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
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue