From: Christophe Jaillet Date: Tue, 26 May 2015 05:57:36 +0000 (+0000) Subject: Save a few bytes in conf pool X-Git-Tag: 2.5.0-alpha~3127 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17b746fa768374eea5b991fd62ab8686e70c9d5d;p=thirdparty%2Fapache%2Fhttpd.git Save a few bytes in conf pool git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1681685 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/aaa/mod_auth_basic.c b/modules/aaa/mod_auth_basic.c index 58ea021462f..15d7bb9e809 100644 --- a/modules/aaa/mod_auth_basic.c +++ b/modules/aaa/mod_auth_basic.c @@ -191,7 +191,7 @@ static const char *set_use_digest_algorithm(cmd_parms *cmd, void *config, "AuthBasicUseDigestAlgorithm: ", alg, NULL); } - conf->use_digest_algorithm = apr_pstrdup(cmd->pool, alg); + conf->use_digest_algorithm = alg; conf->use_digest_algorithm_set = 1; return NULL;