aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimo Schulz <[email protected]>2003-08-14 19:10:12 +0000
committerTimo Schulz <[email protected]>2003-08-14 19:10:12 +0000
commitaa6e3f7d2872295ed3c3cc735d721c95dcb0f563 (patch)
treea70e51127dab74e170b9c1964f72fd2cd15e1a30
parent2003-08-14 Timo Schulz <[email protected]> (diff)
downloadgnupg-aa6e3f7d2872295ed3c3cc735d721c95dcb0f563.tar.gz
gnupg-aa6e3f7d2872295ed3c3cc735d721c95dcb0f563.zip
Forgot to remove the unsued variable.
-rw-r--r--agent/pksign.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/agent/pksign.c b/agent/pksign.c
index 37c85cad8..3022e79a7 100644
--- a/agent/pksign.c
+++ b/agent/pksign.c
@@ -67,7 +67,6 @@ int
agent_pksign (CTRL ctrl, FILE *outfp, int ignore_cache)
{
gcry_sexp_t s_skey = NULL, s_hash = NULL, s_sig = NULL;
- gcry_mpi_t frame = NULL;
unsigned char *shadow_info = NULL;
int rc;
char *buf = NULL;
@@ -151,7 +150,6 @@ agent_pksign (CTRL ctrl, FILE *outfp, int ignore_cache)
gcry_sexp_release (s_skey);
gcry_sexp_release (s_hash);
gcry_sexp_release (s_sig);
- gcry_mpi_release (frame);
xfree (buf);
xfree (shadow_info);
return rc;