diff options
author | Marcus Brinkmann <[email protected]> | 2008-09-23 10:52:09 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2008-09-23 10:52:09 +0000 |
commit | 4ae2ac986110b4ba26b52b7f6437c4454c9f1789 (patch) | |
tree | 54a421f215c975080fb505b5f55725c1d8c7e95e | |
parent | 2008-09-19 Moritz <[email protected]> (diff) | |
download | gpgme-4ae2ac986110b4ba26b52b7f6437c4454c9f1789.tar.gz gpgme-4ae2ac986110b4ba26b52b7f6437c4454c9f1789.zip |
2008-09-23 Marcus Brinkmann <[email protected]>
* gpgme.c (gpgme_sig_notation_clear): Clear CTX->sig_notations.
Submitted by "Daniel Mueller" <[email protected]>
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | gpgme/ChangeLog | 5 | ||||
-rw-r--r-- | gpgme/gpgme.c | 1 |
3 files changed, 7 insertions, 0 deletions
@@ -7,6 +7,7 @@ know. Adriaan de Groot [email protected] Albrecht Dre� [email protected] Alfons Hoogervorst [email protected] +Daniel Mueller [email protected] Enno Cramer [email protected] Frank Heckenbach [email protected] Igor Belyi [email protected] diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index c42f4ba4..74484834 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,3 +1,8 @@ +2008-09-23 Marcus Brinkmann <[email protected]> + + * gpgme.c (gpgme_sig_notation_clear): Clear CTX->sig_notations. + Submitted by "Daniel Mueller" <[email protected]> + 2008-09-16 Marcus Brinkmann <[email protected]> * rungpg.c (gpg_new): Don't use errno with ttyname_r. diff --git a/gpgme/gpgme.c b/gpgme/gpgme.c index 5aa879a4..7fbe5c38 100644 --- a/gpgme/gpgme.c +++ b/gpgme/gpgme.c @@ -554,6 +554,7 @@ gpgme_sig_notation_clear (gpgme_ctx_t ctx) _gpgme_sig_notation_free (notation); notation = next_notation; } + ctx->sig_notations = NULL; } |