Make sure that size_t matches size_t.

This commit is contained in:
Richard Levitte 2003-06-04 09:10:43 +00:00
parent f796dc5c06
commit f6eba601b0

View File

@ -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)