1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-20 01:02:44 +02:00

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

View File

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