Forgot to remove the unsued variable.

This commit is contained in:
Timo Schulz 2003-08-14 19:10:12 +00:00
parent 7abac1ad8e
commit aa6e3f7d28
1 changed files with 0 additions and 2 deletions

View File

@ -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;