From: Alessandro Ghedini Date: Thu, 8 Oct 2015 12:37:21 +0000 (+0200) Subject: Replace malloc+strlcpy with strdup X-Git-Tag: OpenSSL_1_1_0-pre1~393 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8acaabec429b39f9436f6a88006384d72d292539;p=openssl Replace malloc+strlcpy with strdup Reviewed-by: Rich Salz Reviewed-by: Richard Levitte --- diff --git a/crypto/conf/conf_def.c b/crypto/conf/conf_def.c index b4903772e3..1da68f9334 100644 --- a/crypto/conf/conf_def.c +++ b/crypto/conf/conf_def.c @@ -223,12 +223,11 @@ static int def_load_bio(CONF *conf, BIO *in, long *line) goto err; } - section = OPENSSL_malloc(10); + section = BUF_strdup("default"); if (section == NULL) { CONFerr(CONF_F_DEF_LOAD_BIO, ERR_R_MALLOC_FAILURE); goto err; } - BUF_strlcpy(section, "default", 10); if (_CONF_new_data(conf) == 0) { CONFerr(CONF_F_DEF_LOAD_BIO, ERR_R_MALLOC_FAILURE);