]> git.ipfire.org Git - thirdparty/apache/httpd.git/commit
* Remove call to apr_reslist_destroy. With the latest trunk version of
authorRuediger Pluem <rpluem@apache.org>
Mon, 4 Aug 2008 12:53:50 +0000 (12:53 +0000)
committerRuediger Pluem <rpluem@apache.org>
Mon, 4 Aug 2008 12:53:50 +0000 (12:53 +0000)
commitf18219717d64c83d08768d18d31498490712fe56
tree9d7ce559c6f668e346834d434dc53b3d6fa0d88a
parent5c5dc8411254a662f279784bcdebd69ed86e4181
* Remove call to apr_reslist_destroy. With the latest trunk version of
  apr-util this causes a lock during shutdown as at the point of time we would
  execute apr_reslist_destroy the reslist is already destroyed, because we are
  in a cleanup of the same pool where the reslist registered itself as
  precleanup.
  With apr-util 1.3.x calling apr_reslist_destroy is not really useful and
  needed in this case as we are in a cleanup that was registered against the
  same pool that is used by the reslist. As it was registered *after* the
  reslist was created it just runs *before* the reslist cleanup would run. This
  is somewhat pointless here and we could leave the job of destroying the
  reslist to the reslist cleanup.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@682369 13f79535-47bb-0310-9956-ffa450edef68
modules/proxy/proxy_util.c