]> git.saurik.com Git - wxWidgets.git/commitdiff
don't unload libgnomevfs.so, this results in a crash on exit later so keep it loaded...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 6 Jan 2008 13:14:41 +0000 (13:14 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 6 Jan 2008 13:14:41 +0000 (13:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51034 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/gnome/gvfs.cpp

index 17e8bc267f7928dbecf41eda7c5b3299a15bb1f0..aa96cc629f13f1cccf69633506f42ec60c339899 100644 (file)
@@ -73,6 +73,12 @@ wxGnomeVFSLibrary::wxGnomeVFSLibrary()
 
 wxGnomeVFSLibrary::~wxGnomeVFSLibrary()
 {
 
 wxGnomeVFSLibrary::~wxGnomeVFSLibrary()
 {
+    // we crash on exit later (i.e. after main() finishes) if we unload this
+    // library, apparently it inserts some hooks in other libraries to which we
+    // link implicitly (GTK+ itself?) which are not uninstalled when it's
+    // unloaded resulting in this crash, so just leave it in memory -- it's a
+    // lesser evil
+    m_libGnomeVFS.Detach();
 }
 
 bool wxGnomeVFSLibrary::IsOk()
 }
 
 bool wxGnomeVFSLibrary::IsOk()