]> granicus.if.org Git - apache/commitdiff
Merge r1352534 from trunk:
authorJoe Orton <jorton@apache.org>
Mon, 23 Jul 2012 15:21:52 +0000 (15:21 +0000)
committerJoe Orton <jorton@apache.org>
Mon, 23 Jul 2012 15:21:52 +0000 (15:21 +0000)
* modules/cache/cache_util.c (write_write_order): Remove redundant
  double assignment, caught by Coverity.  No functional change.

Reviewed by: rjung, humbedooh, jorton

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1364677 13f79535-47bb-0310-9956-ffa450edef68

modules/cache/cache_util.c

index bad438aca2eb829877903039cef89a3afa5324ee..1e5098d5374292b2c111a4c2281cfb26b487d529 100644 (file)
@@ -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;