diff options
author | Marcus Brinkmann <[email protected]> | 2002-06-21 15:28:56 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2002-06-21 15:28:56 +0000 |
commit | a8f087da34e9bb4005b67c4e8710a5b6839ec932 (patch) | |
tree | 3effc6beb0a2f33b6de6773f4f4bb1a412678c1f | |
parent | * gpgmeplug.c (reorder_dn): Added missing stdpart list terminator. (diff) | |
download | gpgme-a8f087da34e9bb4005b67c4e8710a5b6839ec932.tar.gz gpgme-a8f087da34e9bb4005b67c4e8710a5b6839ec932.zip |
2002-06-21 Marcus Brinkmann <[email protected]>
* wait.c (_gpgme_remove_io_cb): Unlock FDT->lock.
Diffstat (limited to '')
-rw-r--r-- | gpgme/ChangeLog | 4 | ||||
-rw-r--r-- | gpgme/wait.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index d9752eb4..e6c3e237 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,3 +1,7 @@ +2002-06-21 Marcus Brinkmann <[email protected]> + + * wait.c (_gpgme_remove_io_cb): Unlock FDT->lock. + 2002-06-20 Werner Koch <[email protected]> * rungpg.c (build_argv): Ignore GPG_AGENT_INFO if set but empty. diff --git a/gpgme/wait.c b/gpgme/wait.c index 6c99d3e3..0e8141ba 100644 --- a/gpgme/wait.c +++ b/gpgme/wait.c @@ -390,5 +390,6 @@ _gpgme_remove_io_cb (void *data) fdt->fds[idx].for_read = 0; fdt->fds[idx].for_write = 0; fdt->fds[idx].opaque = NULL; + UNLOCK (fdt->lock); } |