From 534f207ddd1702b62a37569c71bb91afbf5a6082 Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Sat, 2 Nov 2013 08:22:25 +0000 Subject: [PATCH] Remove useless apr_pstrdup as done for other mod_auth modules in r1026660 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1538149 13f79535-47bb-0310-9956-ffa450edef68 --- modules/aaa/mod_auth_form.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/aaa/mod_auth_form.c b/modules/aaa/mod_auth_form.c index b8891606b3..13d9243e5b 100644 --- a/modules/aaa/mod_auth_form.c +++ b/modules/aaa/mod_auth_form.c @@ -149,7 +149,7 @@ static const char *add_authn_provider(cmd_parms * cmd, void *config, authn_provider_list *newp; newp = apr_pcalloc(cmd->pool, sizeof(authn_provider_list)); - newp->provider_name = apr_pstrdup(cmd->pool, arg); + newp->provider_name = arg; /* lookup and cache the actual provider now */ newp->provider = ap_lookup_provider(AUTHN_PROVIDER_GROUP, -- 2.40.0