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:
a123c55
)
check length properly
author
Bodo Möller
<bodo@openssl.org>
Mon, 3 Apr 2006 13:57:56 +0000
(13:57 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Mon, 3 Apr 2006 13:57:56 +0000
(13:57 +0000)
Submitted by: Peter Sylvester
ssl/t1_lib.c
patch
|
blob
|
history
diff --git
a/ssl/t1_lib.c
b/ssl/t1_lib.c
index d75588676d22c06aa32c5da3622a2af17d43216a..69c0d42b1acd43d69c3d3a7b8a3bc8e3fc337a56 100644
(file)
--- a/
ssl/t1_lib.c
+++ b/
ssl/t1_lib.c
@@
-221,7
+221,7
@@
unsigned char *ssl_add_clienthello_tlsext(SSL *s, unsigned char *p, unsigned cha
/* Add TLS extension EllipticCurves to the ClientHello message */
long lenmax;
- if ((lenmax = limit - p -
5
) < 0) return NULL;
+ if ((lenmax = limit - p -
6
) < 0) return NULL;
if (s->tlsext_ellipticcurvelist_length > (unsigned long)lenmax) return NULL;
if (s->tlsext_ellipticcurvelist_length > 255)
{