You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2013/11/02 09:22:26 UTC

svn commit: r1538149 - /httpd/httpd/trunk/modules/aaa/mod_auth_form.c

Author: jailletc36
Date: Sat Nov  2 08:22:25 2013
New Revision: 1538149

URL: http://svn.apache.org/r1538149
Log:
Remove useless apr_pstrdup as done for other mod_auth modules in r1026660

Modified:
    httpd/httpd/trunk/modules/aaa/mod_auth_form.c

Modified: httpd/httpd/trunk/modules/aaa/mod_auth_form.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/aaa/mod_auth_form.c?rev=1538149&r1=1538148&r2=1538149&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/aaa/mod_auth_form.c (original)
+++ httpd/httpd/trunk/modules/aaa/mod_auth_form.c Sat Nov  2 08:22:25 2013
@@ -149,7 +149,7 @@ static const char *add_authn_provider(cm
     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,