You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ni...@apache.org on 2006/05/07 23:00:09 UTC

svn commit: r404848 - /httpd/httpd/trunk/server/scoreboard.c

Author: niq
Date: Sun May  7 14:00:08 2006
New Revision: 404848

URL: http://svn.apache.org/viewcvs?rev=404848&view=rev
Log:
Scoreboard size (Chris Darroch)

Modified:
    httpd/httpd/trunk/server/scoreboard.c

Modified: httpd/httpd/trunk/server/scoreboard.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/server/scoreboard.c?rev=404848&r1=404847&r2=404848&view=diff
==============================================================================
--- httpd/httpd/trunk/server/scoreboard.c (original)
+++ httpd/httpd/trunk/server/scoreboard.c Sun May  7 14:00:08 2006
@@ -117,8 +117,7 @@
 
     ap_calc_scoreboard_size();
     ap_scoreboard_image =
-        calloc(1, sizeof(scoreboard) + server_limit * sizeof(worker_score *) +
-               server_limit * lb_limit * sizeof(lb_score *));
+        calloc(1, sizeof(scoreboard) + server_limit * sizeof(worker_score *));
     more_storage = shared_score;
     ap_scoreboard_image->global = (global_score *)more_storage;
     more_storage += sizeof(global_score);