From 063c0502ef40e19900fe9fe21daa13ed78202a3f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Sun, 21 May 2000 14:17:01 +0000 Subject: [PATCH] Avoid sprintf. --- ssl/ssl_ciph.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c index 7436a50ad1..a5b2b97056 100644 --- a/ssl/ssl_ciph.c +++ b/ssl/ssl_ciph.c @@ -975,13 +975,14 @@ char *SSL_CIPHER_description(SSL_CIPHER *cipher, char *buf, int len) if (buf == NULL) { - buf=Malloc(128); + len=128; + buf=Malloc(len); if (buf == NULL) return("Malloc Error"); } else if (len < 128) return("Buffer too small"); - sprintf(buf,format,cipher->name,ver,kx,au,enc,mac,exp); + BIO_snprintf(buf,len,format,cipher->name,ver,kx,au,enc,mac,exp); return(buf); } -- 2.34.1