diff options
author | Ben Laurie <ben@openssl.org> | 2008-11-01 17:40:37 +0100 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 2008-11-01 17:40:37 +0100 |
commit | 5e4430e70df0020f5f1517249851696cb9ac4ad2 (patch) | |
tree | 95dcbc73bcd99b725664324db882b4a388d0d4cb /crypto/asn1/evp_asn1.c | |
parent | size_tification. (diff) | |
download | openssl-5e4430e70df0020f5f1517249851696cb9ac4ad2.tar.xz openssl-5e4430e70df0020f5f1517249851696cb9ac4ad2.zip |
More size_tification.
Diffstat (limited to 'crypto/asn1/evp_asn1.c')
-rw-r--r-- | crypto/asn1/evp_asn1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/evp_asn1.c b/crypto/asn1/evp_asn1.c index b7bb7eb127..8878ec3ec6 100644 --- a/crypto/asn1/evp_asn1.c +++ b/crypto/asn1/evp_asn1.c @@ -142,7 +142,7 @@ int ASN1_TYPE_get_int_octetstring(ASN1_TYPE *a, long *num, unsigned char *data, ASN1_INTEGER *ai=NULL; ASN1_OCTET_STRING *os=NULL; const unsigned char *p; - long length; + size_t length; ASN1_const_CTX c; if ((a->type != V_ASN1_SEQUENCE) || (a->value.sequence == NULL)) |