diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-08-28 22:36:26 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-08-28 22:36:26 +0800 |
commit | 906a178ce8264e7848330d5244639c0c2d856aee (patch) | |
tree | ee996ea73f2867a65bebf8e212daaabf85a16c87 /mail/main.c | |
parent | 09a9a8cd34cbeeef5ce1902e7f0ab7d8c2584053 (diff) | |
download | gsoc2013-evolution-906a178ce8264e7848330d5244639c0c2d856aee.tar.gz gsoc2013-evolution-906a178ce8264e7848330d5244639c0c2d856aee.tar.zst gsoc2013-evolution-906a178ce8264e7848330d5244639c0c2d856aee.zip |
Goodbye, GDK_THREADS!
svn path=/trunk/; revision=5074
Diffstat (limited to 'mail/main.c')
-rw-r--r-- | mail/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mail/main.c b/mail/main.c index a88117b2c3..be35d52fd4 100644 --- a/mail/main.c +++ b/mail/main.c @@ -65,6 +65,11 @@ main (int argc, char *argv []) signal (SIGSEGV, SIG_DFL); signal (SIGBUS, SIG_DFL); + if (gdk_threads_mutex) { + g_mutex_free (gdk_threads_mutex); + gdk_threads_mutex = NULL; + } + GDK_THREADS_ENTER (); bonobo_main (); GDK_THREADS_LEAVE (); |