mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Check if we have an instance before dereferencing it
If we don't have a GPS service userid in the preferences and the GpsLocation class isn't instantiated, this would cause a crash. Fixes #367 Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
67fbf6009a
commit
38af1f2ab9
3 changed files with 8 additions and 1 deletions
|
@ -46,6 +46,11 @@ GpsLocation *GpsLocation::instance()
|
|||
return m_Instance;
|
||||
}
|
||||
|
||||
bool GpsLocation::hasInstance()
|
||||
{
|
||||
return m_Instance != NULL;
|
||||
}
|
||||
|
||||
GpsLocation::~GpsLocation()
|
||||
{
|
||||
m_Instance = NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue