diff options
author | Marcus Brinkmann <[email protected]> | 2003-05-18 14:39:56 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2003-05-18 14:39:56 +0000 |
commit | ce1878d7e945d20b649a6c19929f90e7b9f9a707 (patch) | |
tree | 8caf6ef47e4506cc2ffa23ba987227d3eff7078e | |
parent | 2003-05-18 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-ce1878d7e945d20b649a6c19929f90e7b9f9a707.tar.gz gpgme-ce1878d7e945d20b649a6c19929f90e7b9f9a707.zip |
2003-05-18 Marcus Brinkmann <[email protected]>
* keylist.c (finish_key): Clear OPD->tmp_uid.
-rw-r--r-- | gpgme/ChangeLog | 4 | ||||
-rw-r--r-- | gpgme/keylist.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index 3154b3ac..f597c504 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,5 +1,9 @@ 2003-05-18 Marcus Brinkmann <[email protected]> + * keylist.c (finish_key): Clear OPD->tmp_uid. + +2003-05-18 Marcus Brinkmann <[email protected]> + * verify.c (_gpgme_verify_status_handler): Return GPGME_No_Data for NODATA status without signatures. diff --git a/gpgme/keylist.c b/gpgme/keylist.c index 84ac8e31..8483c491 100644 --- a/gpgme/keylist.c +++ b/gpgme/keylist.c @@ -331,6 +331,7 @@ finish_key (GpgmeCtx ctx, op_data_t opd) GpgmeKey key = opd->tmp_key; opd->tmp_key = NULL; + opd->tmp_uid = NULL; if (key) _gpgme_engine_io_event (ctx->engine, GPGME_EVENT_NEXT_KEY, key); |