Commit 48bd505c authored by Ben Laurie's avatar Ben Laurie
Browse files

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

parent ab2d91bd
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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);