summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-07-24 14:42:05 +0000
committerRichard Levitte <levitte@openssl.org>2002-07-24 14:42:05 +0000
commit8792704cf2a370d01a1470232d71edb09cb5090a (patch)
tree9da1dcc3931cd374ee555a67299c60d534b00d45
parent5787727f5d069f94834ebfa925465598467aba42 (diff)
Don't clobber loop variable.
PR: 159
-rw-r--r--crypto/pkcs7/verify.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/pkcs7/verify.c b/crypto/pkcs7/verify.c
index 49fc8d8bed..bd270062b4 100644
--- a/crypto/pkcs7/verify.c
+++ b/crypto/pkcs7/verify.c
@@ -179,10 +179,11 @@ char *argv[];
{
ASN1_UTCTIME *tm;
char *str1,*str2;
+ int rc;
si=sk_PKCS7_SIGNER_INFO_value(sk,i);
- i=PKCS7_dataVerify(cert_store,&cert_ctx,p7bio,p7,si);
- if (i <= 0)
+ rc=PKCS7_dataVerify(cert_store,&cert_ctx,p7bio,p7,si);
+ if (rc <= 0)
goto err;
printf("signer info\n");
if ((tm=get_signed_time(si)) != NULL)