Merge pull request #14 from LudovicRousseau/master

Fix compiler warning and real problem
This commit is contained in:
Ludovic Rousseau 2012-01-09 02:05:55 -08:00
commit c4a200a236
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ static CK_RV gostr3410_verify_data(const unsigned char *pubkey, int pubkey_len,
unsigned char *signat, int signat_len)
{
EVP_PKEY *pkey;
EVP_PKEY_CTX *pkey_ctx;
EVP_PKEY_CTX *pkey_ctx = NULL;
EC_POINT *P;
BIGNUM *X, *Y;
ASN1_OCTET_STRING *octet;