mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
Fix crash
With no dive sites we dereference a NULL pointer. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
f28cec7b9e
commit
96cffe88e7
1 changed files with 7 additions and 2 deletions
|
@ -219,8 +219,13 @@ MainTab::~MainTab()
|
|||
|
||||
void MainTab::setCurrentLocationIndex()
|
||||
{
|
||||
if (current_dive)
|
||||
ui.location->setCurrentText(get_dive_site_by_uuid(current_dive->dive_site_uuid)->name);
|
||||
if (current_dive) {
|
||||
struct dive_site *ds = get_dive_site_by_uuid(current_dive->dive_site_uuid);
|
||||
if (ds)
|
||||
ui.location->setCurrentText(ds->name);
|
||||
else
|
||||
ui.location->setCurrentText("");
|
||||
}
|
||||
}
|
||||
|
||||
void MainTab::enableGeoLookupEdition()
|
||||
|
|
Loading…
Reference in a new issue