Author: pburba
Date: Thu Apr 12 21:51:16 2012
New Revision: 1325538

URL: http://svn.apache.org/viewvc?rev=1325538&view=rev
Log:
On the inheritable-props branch: More iterpools.

* subversion/svnserve/serve.c:
  (get_dir): Actually *use* the iterpools created in r1325534.


Modified:
    subversion/branches/inheritable-props/subversion/svnserve/serve.c

Modified: subversion/branches/inheritable-props/subversion/svnserve/serve.c
URL: 
http://svn.apache.org/viewvc/subversion/branches/inheritable-props/subversion/svnserve/serve.c?rev=1325538&r1=1325537&r2=1325538&view=diff
==============================================================================
--- subversion/branches/inheritable-props/subversion/svnserve/serve.c (original)
+++ subversion/branches/inheritable-props/subversion/svnserve/serve.c Thu Apr 
12 21:51:16 2012
@@ -1674,10 +1674,10 @@ static svn_error_t *get_dir(svn_ra_svn_c
             APR_ARRAY_IDX(inherited_props, i, svn_prop_inherited_item_t *);
 
           svn_pool_clear(iterpool);
-          SVN_ERR(svn_ra_svn_write_tuple(conn, pool, "!(c(!",
+          SVN_ERR(svn_ra_svn_write_tuple(conn, iterpool, "!(c(!",
                                          iprop->path_or_url));
-          SVN_ERR(svn_ra_svn_write_proplist(conn, pool, iprop->prop_hash));
-          SVN_ERR(svn_ra_svn_write_tuple(conn, pool, "!))!",
+          SVN_ERR(svn_ra_svn_write_proplist(conn, iterpool, iprop->prop_hash));
+          SVN_ERR(svn_ra_svn_write_tuple(conn, iterpool, "!))!",
                                          iprop->path_or_url));
         }
       svn_pool_destroy(iterpool);


Reply via email to