Navigation Menu

Skip to content

Commit

Permalink
Fix crash on exit
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 25, 2020
1 parent 2fbb4db commit 4a23df0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/app/qgisapp.cpp
Expand Up @@ -1705,6 +1705,14 @@ QgisApp::~QgisApp()
// shouldn't be needed, but from this stage on, we don't want/need ANY map canvas refreshes to take place
mFreezeCount = 1000000;

#ifdef HAVE_GEOREFERENCER
if ( mGeoreferencer )
{
delete mGeoreferencer;
mGeoreferencer = nullptr;
}
#endif

mNetworkLoggerWidgetFactory.reset();

delete mInternalClipboard;
Expand Down

0 comments on commit 4a23df0

Please sign in to comment.