Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Some tests rely on the current dinitialization order
  • Loading branch information
m-kuhn committed Mar 2, 2019
1 parent 680d5d2 commit 024e8eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/qgsapplication.cpp
Expand Up @@ -1177,6 +1177,8 @@ QgsAuthManager *QgsApplication::authManager()

void QgsApplication::exitQgis()
{
delete QgsApplication::authManager();

//Ensure that all remaining deleteLater QObjects are actually deleted before we exit.
//This isn't strictly necessary (since we're exiting anyway) but doing so prevents a lot of
//LeakSanitiser noise which hides real issues
Expand All @@ -1189,8 +1191,6 @@ void QgsApplication::exitQgis()

delete QgsProviderRegistry::instance();

delete QgsApplication::authManager();

// invalidate coordinate cache while the PROJ context held by the thread-locale
// QgsProjContextStore object is still alive. Otherwise if this later object
// is destroyed before the static variables of the cache, we might use freed memory.
Expand Down

0 comments on commit 024e8eb

Please sign in to comment.