From: Ben Laurie Date: Thu, 4 Oct 2007 08:01:21 +0000 (+0000) Subject: Fix off-by-one. X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=eb4a1027ae459ad0bf6f9b5a81735d49654fbc07;p=oweals%2Fopenssl.git Fix off-by-one. --- diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c index 4e8f302a5e..e9fda28f63 100644 --- a/ssl/ssl_lib.c +++ b/ssl/ssl_lib.c @@ -1169,7 +1169,6 @@ int SSL_set_cipher_list(SSL *s,const char *str) char *SSL_get_shared_ciphers(const SSL *s,char *buf,int len) { char *p; - const char *cp; STACK_OF(SSL_CIPHER) *sk; SSL_CIPHER *c; int i; @@ -1182,20 +1181,21 @@ char *SSL_get_shared_ciphers(const SSL *s,char *buf,int len) sk=s->session->ciphers; for (i=0; iname; *cp; ) + n=strlen(c->name); + if (n+1 > len) { - if (len-- <= 0) - { - *p='\0'; - return(buf); - } - else - *(p++)= *(cp++); + if (p != buf) + --p; + *p='\0'; + return buf; } + strcpy(p,c->name); + p+=n; *(p++)=':'; + len-=n+1; } p[-1]='\0'; return(buf);