--- subversion-1.7.5/subversion/mod_authz_svn/mod_authz_svn.c.orig	2012-09-15 20:39:03.049358940 +0200
+++ subversion-1.7.5/subversion/mod_authz_svn/mod_authz_svn.c	2012-09-15 20:50:12.534320673 +0200
@@ -591,6 +591,7 @@
   svn_boolean_t authz_access_granted = FALSE;
   char errbuf[256];
   const char *username_to_authorize;
+  apr_pool_t *pool;
 
   conf = ap_get_module_config(r->per_dir_config,
                               &authz_svn_module);
@@ -614,12 +615,14 @@
    */
   if (repos_path)
     {
+      apr_pool_create(&pool, r->pool);
       svn_err = svn_repos_authz_check_access(access_conf, repos_name,
                                              repos_path,
                                              username_to_authorize,
                                              svn_authz_none|svn_authz_read,
                                              &authz_access_granted,
-                                             r->pool);
+                                             pool);
+      apr_pool_destroy(pool);
       if (svn_err)
         {
           ap_log_rerror(APLOG_MARK, APLOG_ERR,
