If you're going to check for negative, use an signed integer! Coverity ID 122.

This commit is contained in:
Ben Laurie 2007-04-05 17:31:29 +00:00
parent ab2d91bd6b
commit 48bd505c0b

View file

@ -1024,7 +1024,8 @@ int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
if ((sk != NULL) && (sk_X509_ATTRIBUTE_num(sk) != 0))
{
unsigned char md_dat[EVP_MAX_MD_SIZE], *abuf = NULL;
unsigned int md_len, alen;
unsigned int md_len;
int alen;
ASN1_OCTET_STRING *message_digest;
EVP_DigestFinal_ex(&mdc_tmp,md_dat,&md_len);