agent: Init a local variable in the error case.

* agent/pksign.c (do_encode_md): Init HASH on error.
This commit is contained in:
Werner Koch 2014-09-18 15:32:17 +02:00
parent 4f35ef499a
commit f82a6e0f08
1 changed files with 3 additions and 1 deletions

View File

@ -69,6 +69,8 @@ do_encode_md (const byte * md, size_t mdlen, int algo, gcry_sexp_t * r_hash,
mpi);
gcry_mpi_release (mpi);
}
else
hash = NULL;
}