From aa6e3f7d2872295ed3c3cc735d721c95dcb0f563 Mon Sep 17 00:00:00 2001 From: Timo Schulz Date: Thu, 14 Aug 2003 19:10:12 +0000 Subject: [PATCH] Forgot to remove the unsued variable. --- agent/pksign.c | 2 -- 1 file changed, 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;