Index: subversion/libsvn_client/prop_commands.c
===================================================================
--- subversion/libsvn_client/prop_commands.c	(revision 22952)
+++ subversion/libsvn_client/prop_commands.c	(working copy)
@@ -1091,6 +1091,7 @@
   const char *utarget;  /* target, or the url for target */
   const char *url;
   svn_revnum_t revnum;
+  apr_pool_t *scratchpool;
 
   *props = apr_array_make(pool, 5, sizeof(svn_client_proplist_item_t *));
 
@@ -1110,9 +1111,11 @@
       
       SVN_ERR(svn_ra_check_path(ra_session, "", revnum, &kind, pool));
 
+      scratchpool = svn_pool_create(pool);
       SVN_ERR(remote_proplist(*props, url, "",
                               kind, revnum, ra_session,
-                              recurse, pool, svn_pool_create(pool)));
+                              recurse, pool, scratchpool));
+      svn_pool_destroy(scratchpool);
     }
   else  /* working copy path */
     {
