diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-08-16 00:40:01 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-08-16 00:40:01 +0800 |
commit | 52af76d0932bfc2b1acd622a681328c01c946382 (patch) | |
tree | de9fdebee125527051e2a4b6a1da94aadc1252ce /mail/session.c | |
parent | 89909db45a1617241aca02b1a4cb34b36b73e3f7 (diff) | |
download | gsoc2013-evolution-52af76d0932bfc2b1acd622a681328c01c946382.tar gsoc2013-evolution-52af76d0932bfc2b1acd622a681328c01c946382.tar.gz gsoc2013-evolution-52af76d0932bfc2b1acd622a681328c01c946382.tar.bz2 gsoc2013-evolution-52af76d0932bfc2b1acd622a681328c01c946382.tar.lz gsoc2013-evolution-52af76d0932bfc2b1acd622a681328c01c946382.tar.xz gsoc2013-evolution-52af76d0932bfc2b1acd622a681328c01c946382.tar.zst gsoc2013-evolution-52af76d0932bfc2b1acd622a681328c01c946382.zip |
Don't deadlock on PGP key request
svn path=/trunk/; revision=4841
Diffstat (limited to 'mail/session.c')
-rw-r--r-- | mail/session.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mail/session.c b/mail/session.c index 9f9072e93f..161536022e 100644 --- a/mail/session.c +++ b/mail/session.c @@ -45,9 +45,14 @@ mail_request_dialog (const char *prompt, gboolean secret, const char *key, request_callback, &ans, NULL); if (!dialog) return NULL; + GDK_THREADS_ENTER (); if (gnome_dialog_run_and_close (GNOME_DIALOG (dialog)) == -1 || - ans == NULL) + ans == NULL) { + GDK_THREADS_LEAVE (); return NULL; + } + + GDK_THREADS_LEAVE (); } else { if (!mail_op_get_password ((char *) prompt, secret, &ans)) return NULL; |