File openssl-CVE-2007-5135.patch of Package compat-openssl097g

Index: openssl-0.9.7g/ssl/ssl_lib.c
===================================================================
--- openssl-0.9.7g.orig/ssl/ssl_lib.c
+++ openssl-0.9.7g/ssl/ssl_lib.c
@@ -1149,7 +1149,6 @@ int SSL_set_cipher_list(SSL *s,const cha
 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;
@@ -1162,20 +1161,21 @@ char *SSL_get_shared_ciphers(const SSL *
 	sk=s->session->ciphers;
 	for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
 		{
-		/* Decrement for either the ':' or a '\0' */
-		len--;
+		int n;
+
 		c=sk_SSL_CIPHER_value(sk,i);
-		for (cp=c->name; *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);
openSUSE Build Service is sponsored by