From: Marcus Brinkmann Date: Thu, 14 Apr 2005 08:41:12 +0000 (+0000) Subject: 2005-04-14 Marcus Brinkmann X-Git-Tag: gpgme-1-1-0~49 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=33fee70045a41f58e3769081ee69a6c99c7a3013;p=gpgme.git 2005-04-14 Marcus Brinkmann * wait-global.c (gpgme_wait): If no context is found, and we should not hang, set *status to 0 and return NULL. Reported by Igor Belyi . --- diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index 6ee994d..d993d47 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,3 +1,9 @@ +2005-04-14 Marcus Brinkmann + + * wait-global.c (gpgme_wait): If no context is found, and we + should not hang, set *status to 0 and return NULL. + Reported by Igor Belyi . + 2005-03-24 Marcus Brinkmann * data.h (EOPNOTSUPP) [_WIN32]: Remove definition. diff --git a/gpgme/wait-global.c b/gpgme/wait-global.c index 17e57dd..7de72f7 100644 --- a/gpgme/wait-global.c +++ b/gpgme/wait-global.c @@ -350,6 +350,12 @@ gpgme_wait (gpgme_ctx_t ctx, gpgme_error_t *status, int hang) ctx = dctx; hang = 0; } + else if (!hang) + { + ctx = NULL; + if (status) + *status = NULL; + } } } while (hang);