> -----Ursprüngliche Nachricht-----
> Von: Jeff Trawick 
> Gesendet: Dienstag, 27. November 2007 14:21
> An: dev@httpd.apache.org
> Betreff: memory leak in 2.2.x balancer?
> 
> 
> looks like a leak to me; what do you think?
> 
> Index: modules/proxy/mod_proxy_balancer.c
> ===================================================================
> --- modules/proxy/mod_proxy_balancer.c  (revision 598305)
> +++ modules/proxy/mod_proxy_balancer.c  (working copy)
> @@ -654,7 +654,7 @@
>          const char *val;
>          if ((val = apr_table_get(params, "ss"))) {
>              if (strlen(val))
> -                bsel->sticky = apr_pstrdup(conf->pool, val);
> +                bsel->sticky = apr_pstrdup(r->pool, val);
>              else
>                  bsel->sticky = NULL;
>          }
> 
> trunk looks much different here.  Does anyone plan to backport the
> larger changes to 2.2.x in the near term, or should we go for this
> tweak?

This is no leak as if it were possible to adjust the balancer settings via
the balancer manager their memory would need to be taken from a long living
pool or more precise from the shared memory. This is not implemented now.
So it makes no sense to adjust the balancer settings via the balancer manager.
For this reason this possibility was removed from trunk. So far no one has
found the energy to propose a clear backport of this change.
So if someone find the energy soon, fine. If not please leave everything as it
is as we face segfaults otherwise.

Regards

Rüdiger

Reply via email to