From: Christophe Jaillet Date: Sat, 6 Jun 2015 05:59:49 +0000 (+0000) Subject: Save a few bytes in conf pool X-Git-Tag: 2.5.0-alpha~3100 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=38f19495939cc08396d678455bc0e5699ba7bcef;p=apache Save a few bytes in conf pool git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1683884 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/dav/main/mod_dav.c b/modules/dav/main/mod_dav.c index 1fff958954..7734bb8d75 100644 --- a/modules/dav/main/mod_dav.c +++ b/modules/dav/main/mod_dav.c @@ -254,7 +254,7 @@ static const char *dav_cmd_dav(cmd_parms *cmd, void *config, const char *arg1) conf->provider = NULL; } else { - conf->provider_name = apr_pstrdup(cmd->pool, arg1); + conf->provider_name = arg1; } if (conf->provider_name != NULL) {