From: Tim Rühsen Date: Fri, 24 Aug 2018 14:34:14 +0000 (+0200) Subject: Use gnutls_strdup() instead of strdup() in library code X-Git-Tag: gnutls_3_6_4~25^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=20886264fe;p=thirdparty%2Fgnutls.git Use gnutls_strdup() instead of strdup() in library code Signed-off-by: Tim Rühsen --- diff --git a/lib/ext/srp.c b/lib/ext/srp.c index 73c7936655..fdbc8e7fb4 100644 --- a/lib/ext/srp.c +++ b/lib/ext/srp.c @@ -158,13 +158,13 @@ _gnutls_srp_send_params(gnutls_session_t session, goto cleanup; } - priv->username = strdup(cred->username); + priv->username = gnutls_strdup(cred->username); if (priv->username == NULL) { gnutls_assert(); goto cleanup; } - priv->password = strdup(cred->password); + priv->password = gnutls_strdup(cred->password); if (priv->password == NULL) { gnutls_assert(); goto cleanup; diff --git a/lib/priority.c b/lib/priority.c index 00681c53e8..6a93545cdf 100644 --- a/lib/priority.c +++ b/lib/priority.c @@ -1154,7 +1154,7 @@ size_t n, n2 = 0, line_size; ret[n] = 0; } } else { - return strdup(p); + return gnutls_strdup(p); } finish: