aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2008-09-23 10:52:09 +0000
committerMarcus Brinkmann <[email protected]>2008-09-23 10:52:09 +0000
commit4ae2ac986110b4ba26b52b7f6437c4454c9f1789 (patch)
tree54a421f215c975080fb505b5f55725c1d8c7e95e
parent2008-09-19 Moritz <[email protected]> (diff)
downloadgpgme-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--THANKS1
-rw-r--r--gpgme/ChangeLog5
-rw-r--r--gpgme/gpgme.c1
3 files changed, 7 insertions, 0 deletions
diff --git a/THANKS b/THANKS
index 4fda3d57..7d112b06 100644
--- a/THANKS
+++ b/THANKS
@@ -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;
}