From: Joe Orton Date: Thu, 21 Jun 2012 14:01:57 +0000 (+0000) Subject: * modules/cache/cache_util.c (write_write_order): Remove redundant X-Git-Tag: 2.5.0-alpha~6713 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=381ac02df28cc2061a49ead8c638af130694626d;p=thirdparty%2Fapache%2Fhttpd.git * modules/cache/cache_util.c (write_write_order): Remove redundant double assignment, caught by Coverity. No functional change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1352534 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/cache_util.c b/modules/cache/cache_util.c index bad438aca2e..1e5098d5374 100644 --- a/modules/cache/cache_util.c +++ b/modules/cache/cache_util.c @@ -172,7 +172,7 @@ cache_provider_list *cache_get_providers(request_rec *r, cache_server_conf *conf, apr_uri_t uri) { - cache_dir_conf *dconf = dconf = ap_get_module_config(r->per_dir_config, &cache_module); + cache_dir_conf *dconf = ap_get_module_config(r->per_dir_config, &cache_module); cache_provider_list *providers = NULL; int i;