From: Richard Levitte Date: Wed, 4 Jun 2003 09:10:43 +0000 (+0000) Subject: Make sure that size_t matches size_t. X-Git-Tag: BEN_FIPS_TEST_1~38^2~76 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f6eba601b098a7a7762e53dafea55da7a176e36c;p=oweals%2Fopenssl.git Make sure that size_t matches size_t. --- diff --git a/crypto/ecdh/ech_ossl.c b/crypto/ecdh/ech_ossl.c index b3cff5ad90..6a8ed84644 100644 --- a/crypto/ecdh/ech_ossl.c +++ b/crypto/ecdh/ech_ossl.c @@ -109,7 +109,8 @@ static int ecdh_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, E BN_CTX *ctx; EC_POINT *tmp=NULL; BIGNUM *x=NULL, *y=NULL; - int ret= -1, buflen, len; + int ret= -1; + size_t buflen, len; unsigned char *buf=NULL; if (outlen > INT_MAX)