aboutsummaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2012-07-19 16:57:19 +0000
committerDr. Stephen Henson <steve@openssl.org>2012-07-19 16:57:19 +0000
commit8e2a06bf5c0587f69dff0cd654214c20096baf84 (patch)
treed97a73dfd43d2114f99887a5b2770c1cf9b07117 /ssl
parenta1644902eb054136591b36cf7b7fc427bc4f52bd (diff)
downloadopenssl-8e2a06bf5c0587f69dff0cd654214c20096baf84.zip
openssl-8e2a06bf5c0587f69dff0cd654214c20096baf84.tar.gz
openssl-8e2a06bf5c0587f69dff0cd654214c20096baf84.tar.bz2
stop warning
Diffstat (limited to 'ssl')
-rw-r--r--ssl/t1_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c
index 3421e34..5873053 100644
--- a/ssl/t1_lib.c
+++ b/ssl/t1_lib.c
@@ -2988,7 +2988,7 @@ static int tls12_get_pkey_idx(unsigned char sig_alg)
static void tls1_lookup_sigalg(int *phash_nid, int *psign_nid,
int *psignhash_nid, const unsigned char *data)
{
- int sign_nid, hash_nid;
+ int sign_nid = 0, hash_nid = 0;
if (!phash_nid && !psign_nid && !psignhash_nid)
return;
if (phash_nid || psignhash_nid)