projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f796dc5
)
Make sure that size_t matches size_t.
author
Richard Levitte
<levitte@openssl.org>
Wed, 4 Jun 2003 09:10:43 +0000
(09:10 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 4 Jun 2003 09:10:43 +0000
(09:10 +0000)
crypto/ecdh/ech_ossl.c
patch
|
blob
|
history
diff --git
a/crypto/ecdh/ech_ossl.c
b/crypto/ecdh/ech_ossl.c
index b3cff5ad90f103294906fa6a3567980988e64a9a..6a8ed8464437394c5022ba3c7917c4ee77d596c3 100644
(file)
--- 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)